.booking-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 50%;
    flex: 1;
    box-sizing: border-box;
    min-width: 0;
}

.booking-details-my-orders {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-sizing: border-box;
}

.booking-details-my-orders > button {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.booking-details-my-orders-details {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    flex: 1;
    min-width: 0;
}

.booking-details-my-orders-details-image {
    background-color: #E5E5E5;
    height: 56px;
    width: 56px;
    min-width: 56px;
    flex-shrink: 0;
    border-radius: 8px;
}

.booking-details-my-orders-details-text {
    display: flex;
    flex-direction: column;
    text-align: start;
    align-items: flex-start;
    gap: 0.3rem;
    flex: 1;
    min-width: 0;
}

.booking-details-my-orders-details-text-title {
    font-size: 1rem;
    font-weight: bold;
    font-family: 'PTSerif';
    color: #141414;
    margin: 0;
    text-align: start;
    word-wrap: break-word;
    line-height: 1.4;
}

.booking-details-my-orders-details-text-subtitle {
    font-size: 0.85rem;
    font-weight: 400;
    font-family: 'PTSerif';
    color: #737373;
    margin: 0;
    text-align: start;
    word-wrap: break-word;
}

.booking-details-container {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 1.5rem;
    gap: 2rem;
    align-items: flex-start;
    box-sizing: border-box;
    border-radius: 16px;
}

.booking-details-container > p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
    color: #141414;
    text-align: start;
}

.dialog-get-receipt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.dialog-get-receipt-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #141414;
    margin: 0;
    text-align: start;
}

.dialog-get-receipt-subtitle {
    color: #737373;
    font-size: 1rem;
    margin: 0.3rem 0 0 0;
    text-align: start;
    line-height: 1.5;
}

.dialog-get-receipt-btn {
    margin-top: 2rem;
    width: 100%;
}

/* Mobile Large - 576px to 767px */
@media (max-width: 767px) {
    .booking-details{
        max-width: 100%;
    }

    .booking-details-container{
        padding: 0;
        gap:0;
    }

    .booking-details-container > p{
        margin-top: 0.9rem;
    }
    
}