.my-bookings {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 50%;
    flex: 1;
    box-sizing: border-box;
    min-width: 0;
}

.my-bookings-backbutton {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.my-bookings-backbutton h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #141414;
    margin: 0;
    text-align: start;
    line-height: 2rem;
}

.my-bookings-container {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 1.5rem;
    gap: 2rem;
    box-sizing: border-box;
    border-radius: 16px;
}

.my-bookings-history {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #F9FAFB;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    justify-content: flex-start;
}

.my-bookings-tab {
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    text-align: start;
}

.my-bookings-tab:hover {
    background-color: #FAFAFA;
}

.my-bookings-tab p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: #A3A3A3;
    text-align: start;
}

.my-bookings-tab-selected {
    border-bottom: 3px solid #B704F6;
}

.my-bookings-tab-selected p {
    color: #B704F6;
    font-weight: 600;
}

/* Mobile Large - 576px to 767px */
@media (max-width: 767px) {
    .my-bookings-container{
        padding: 0;
        width: 100%;
    }
    
}