/* تنسيقات نافذة الـ popup */
#loginPopup {
    display: none; /* مخفي افتراضيًا */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    padding: 20px;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

#loginPopup form {
    display: flex;
    flex-direction: column;
}

#loginPopup label {
    margin-bottom: 10px;
}

#loginPopup input[type="email"], #loginPopup input[type="text"] {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#loginPopup button {
    padding: 10px;
    background-color: #ef4656;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#loginPopup button:hover {
    background-color: #ed3e4e;
}

/* لإخفاء الخلفية */
#overlay {
    display: none; /* مخفي افتراضيًا */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 500;
}
