body {
    font-family: Arial, sans-serif;
    background-color: #461800;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
}
.container {
    max-width: 500px;
    width: 90%;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 20px;
}
h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}
.date-input {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 15px;
}

/* التعديلات الجديدة لعناصر select */
.date-input select {
    width: 30%;
    padding: 12px; /* زيادة الحشو */
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 18px; /* تكبير حجم النص */
    height: 50px; /* تحديد ارتفاع ثابت */
    -webkit-appearance: none; /* إزالة المظهر الافتراضي في بعض المتصفحات */
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    cursor: pointer;
}

/* تحسين مظهر السهم في عناصر select */
.date-input select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 15px;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
}
button:hover {
    background-color: #45a049;
}
p {
    color: #333;
    font-size: 26px;
    margin-top: 10px;
    border: 5px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    background-color: #f0f0f0;
}

/* الصورة نفسها */
.responsive-image {
    width: 100%;
    height: auto;
    max-width: 700px;
}