﻿





/* Background overlay for the modal */

.modalBackground {
    background-color: rgba(0, 0, 0, 0.5);
    semi-transparent black position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

/* Popup panel style*/

.modalPopup {
    background-color: #ffffff;
    border: 1px solid #cccccc;
    padding: 20px;
    width: 400px;
    Adjust width as needed border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    text-align: center;
    z-index: 1001;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

/* Label inside the popup */
.popup-label {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.full-height {
    min-height: calc(100vh - 150px); /* عدل القيمة حسب ارتفاع الهيدر والفوتر */
}

.h-100 {
    height: 100%;
}
