/* القاعدة الأساسية */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f9f9f9, #e6e6e6);
    color: #333;
    line-height: 1.6;
}

/* ترويسة الصفحة */
header {
    background-color: #4caf50;
    color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
    font-size: 32px;
}

/* الأزرار */
.button-container {
    text-align: center;
    margin-top: 50px;
}

.button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 24px;
    color: white;
    background-color: #9e9e9e;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.morning {
    background-color: #87ceeb;
}

.morning:hover {
    background-color: #4682b4;
}

.evening {
    background-color: #120373;
}

.evening:hover {
    background-color: #0d0448;
}

/* قسم الأذكار */
.azkar-section {
    max-width: 800px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.azkar-item {
    margin-bottom: 20px;
}

.azkar-item h2 {
    color: #4caf50;
    border-bottom: 2px solid #4caf50;
    padding-bottom: 5px;
    margin-bottom: 15px;
    font-size: 22px;
}

.azkar-item p {
    margin: 10px 0;
    font-size: 18px;
    text-align: justify;
}

/* الفوتر */
footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px 0;
    background-color: #f1f1f1;
    border-top: 1px solid #ddd;
}

footer p {
    margin: 5px 0;
    color: #666;
}