.ib-modal {
    position: fixed;
    font-size: 16px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.ib-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

.ib-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #2a2a2a;
    border: 1px solid #3d3d3d;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    max-width: 500px;
    width: 90%;
    animation: ib-modal-slide-in 0.3s ease;
}

@keyframes ib-modal-slide-in {
    from {
        opacity: 0;
        transform: translate(-50%, -48%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.ib-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #3d3d3d;
}

    .ib-modal-header h3 {
        margin: 0;
        font-size: 20px;
        font-weight: 700;
        color: #ffffff;
    }

.ib-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #9e9e9e;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.ib-close:hover {
    background: #3d3d3d;
    color: #ffffff;
}


.ib-modal-body {
    padding: 24px;
}

    .ib-modal-body p {
        margin: 0 0 16px 0;
        color: #e0e0e0;
        line-height: 1.6;
    }


.ib-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid #3d3d3d;
}

.ib-modal-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.ib-modal-btn-cancel {
    background: #3d3d3d;
    color: #e0e0e0;
}

    .ib-modal-btn-cancel:hover {
        background: #4a4a4a;
    }

.my-bookit-modal-btn-confirm {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
}

    .my-bookit-modal-btn-confirm:hover {
        background: linear-gradient(135deg, #45a049 0%, #388e3c 100%);
        box-shadow: 0 4px 12px rgba(76, 175, 80, 0.6);
    }

    .my-bookit-modal-btn-confirm:disabled {
        background: linear-gradient(135deg, #666 0%, #555 100%);
        cursor: not-allowed;
        box-shadow: none;
        opacity: 0.6;
    }

@media screen and (max-width: 768px) {
    .ib-modal-content {
        width: 95%;
    }

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

        .ib-modal-header h3 {
            font-size: 18px;
        }
}

@media screen and (max-width: 480px) {
    .ib-modal-content {
        width: 96%;
    }

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

        .ib-modal-header h3 {
            font-size: 17px;
        }

        .ib-modal-body p {
            font-size: 15px;
        }

    .ibt-modal-btn {
        padding: 9px 16px;
        font-size: 13px;
    }
}

@media screen and (max-width: 360px) {
}
