body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #dfffdf;
    background-image: url('/static/hadith_app/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/*#hadith-container {
    width: 100%;
    background-image: url('/static/hadith_app/background.png');
    background-size: cover;
    background-position: center;
    padding: 20px;
}*/

h1 {
    text-align: center;
    flex-grow: 1;
    color: white;
}

p {

    color: white;
}

#refresh-button {
    margin: 20px;
    padding: 10px 20px;
    font-size: 1em;
    color: white;
    /*background-color: #007BFF;*/
    background-color: #009000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#refresh-button:hover {
    /*background-color: #0056b3;*/
    background-color: #004D00;
}

#fb-share-button {
    color: #4267B2;
    margin-bottom: 20px;
}

#arabic-narration {
    font-size: 2em; /* You can adjust this value to whatever size you prefer */
    padding: 20px;
}

#english-narration {
    font-size: 1.5em; /* You can adjust this value to whatever size you prefer */
    padding: 20px;
}

#footer {
    /*background-color: #f1f1f1;*/
    background-color: #cbffcb;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 20px;
}

#footer p {
    text-align: center;
    color: #333;
}

#view-counter {
    position: relative;
    top: 0;
    left: 0;
    padding: 10px;
    color: #333;
    background-color: #f8f8f8;
    border: 1px solid #ccc;
    border-radius: 5px;
}

