.info-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1020;
}

.info-modal {
    display: none;
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 500px;
    background-color: white;
    z-index: 1030;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    box-sizing: border-box;
    overflow: hidden;
}

.modal-header, .modal-body, .modal-footer {
    padding: 20px;
}

.modal-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: #f1f1f1;
}

.modal-body {
    text-align: center;
    padding: 20px;
}

.modal-footer {
    display: flex;
    justify-content: center;
    padding: 10px;
    background-color: #f1f1f1;
}

.close-icon {
    width: 28px;
    height: 28px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.close-icon:hover {
    opacity: 1;
}

