
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: white;
    padding: 32px 24px;
    max-width: 520px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-icon {
    margin: 0 auto;
    width: 52px;
    height: 52px;
}

.pending-icon svg {
    animation: pendingSpin 2s linear infinite;
}

@keyframes pendingSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.modal-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--black);
    margin: 12px 0;
    line-height: normal;
}
/* 
.modal-title span {
    display: block;
} */

.modal-subtitle {
    font-size: 12px;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1.5;
}
.modal-subtitle span {
    font-weight: 600;
}
.modal-desc{
    font-size: 12px;
    margin-bottom: 24px;
}

.modal-booking-id {
    font-size: 16px;
    color: var(--black);
    line-height: 23px;
}

.modal-car-image {
    margin: 24px 0;
}

.modal-car-image img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

.modal-button {
    background-color: var(--black);
    color: white;
    padding: 15px 20px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.modal-button:hover {
    background-color: #333;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
        max-width: 90%;
    }
}