﻿
/* mBooking - User Profiles */

.mBooking-userprofile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 12px 0;
    height: 40px;
    padding: 8px 12px;
    border-radius: 18px;
    background: linear-gradient(135deg, #cc0000 0%, #ff6666 60%);
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
}

.mBooking-userprofile-icon {
    font-size: 20px;
}

.mBooking-userprofile-body {
    margin: 0 0 20px 40px;
}

.mBooking-userprofile-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin: 10px auto;
}

.mBooking-userprofile-grid {
    position: relative;
    padding: 12px 10px 12px 18px;
}

.mBooking-userprofile-card {
    background: white;
    margin: 8px 10px 10px 18px;
    border: 1px solid #e0e0e0;
    padding: 0 16px;
    border-radius: 14px;
    height: 42px;
    width: calc(100% - 28px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
    font-size: 15px;
    color: black;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

    .mBooking-userprofile-card:hover {
        background: #fff5f5;
        border-color: #cc0000;
    }

    .mBooking-userprofile-card:active {
        transform: scale(0.98);
        background: #ffe6e6;
    }

.mBooking-userprofile-card-icon {
    font-size: 18px;
    color: #cc0000;
}

.mBooking-userprofile-card-text {
    pointer-events: none;
}

.mBooking-userprofile-title {
    margin-top: -8px;
}

.mBooking-userprofile-tab-content {
    padding: 10px 5px;
    margin-left: 20px;
    background-color: indianred;
    border-radius: 8px;
}

.mBooking-userprofile-container {
    padding: 0 18px;
    border-radius: 18px;
    overflow-y: auto;
}

.mBooking-userprofile-button {
    flex: 1;
    padding: 3px 0;
    margin: 4px 0 4px 0;
    border-radius: 4px;
    background: linear-gradient(135deg, #cc0000 0%, #ff6666 60%);
    border: none;
    background-color: white;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: 0.25s;
}

    .mBooking-userprofile-button:hover {
        background: linear-gradient(135deg, #990000 0%, #ff5555 60%);
    }

.mBooking-userprofile-passport-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.mBooking-userprofile-passport-border {
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    background-color: indianred;
    padding: 10px;
    max-height: 220px;
    max-width: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mBooking-userprofile-passport-image {
    max-height: 200px;
    max-width: 300px;
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
}
