﻿
/* mBooking - Account */

.mBooking-account-content {
    padding: 10px 5px;
    background-color: indianred;
    border-radius: 8px;
}

.mBooking-account-container {
    padding-left: 17px;
    padding-right: 6px;
    border-radius: 18px;
}

.mBooking-account-picture {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 1px;
    background: linear-gradient(135deg, #ff6666, #cc0000);
    object-fit: cover;
    cursor: pointer;
    margin: 10px 10px 10px 0px;
}

.mBooking-account-knownas {
    padding: 14px 0 4px 4px;
    height: 50px;
    font-weight: bold;
    font-size: 16px;
    color: white;
}

.mBooking-account-email {
    padding: 14px 0 4px 4px;
    height: 50px;
    font-weight: bold;
    font-size: 14px;
    color: blue;
}

.mBooking-account-header {
    background: linear-gradient(135deg, #cc0000 0%, #ff6666 60%, #ffffff 100%);
    vertical-align: bottom;
    padding-left: 16px;
    padding-top: 8px;
    height: 40px;
    border-radius: 18px;
    font-size: 14px;
    color: white;
}

.mBooking-account-title {
    margin-top: -8px;
}

.mBooking-account-grid {
    position: relative;
    padding: 12px 10px 12px 18px;
}

.mBooking-account-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-account-card:hover {
        background: #fff5f5;
        border-color: #cc0000;
    }

    .mBooking-account-card:active {
        transform: scale(0.98);
        background: #ffe6e6;
    }

.mBooking-account-card-icon {
    font-size: 18px;
    color: #cc0000;
}

.mBooking-account-card-text {
    pointer-events: none;
}

.mBooking-account-notifiy-row {
    background: white;
    border-radius: 14px;
    border: 1px solid #e0e0e0;
    height: 42px;
    margin: 8px 10px 10px 18px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mBooking-account-notifiy-label {
    font-weight: bold;
    font-size: 15px;
    color: black;
}

.mBooking-account-toggle {
    appearance: none;
    width: 44px;
    height: 24px;
    background: #ccc;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: background 0.2s;
}

    .mBooking-account-toggle::before {
        content: "";
        position: absolute;
        width: 20px;
        height: 20px;
        left: 2px;
        top: 2px;
        background: white;
        border-radius: 50%;
        transition: transform 0.2s;
    }

    .mBooking-account-toggle:checked {
        background: #cc0000;
    }

        .mBooking-account-toggle:checked::before {
            transform: translateX(20px);
        }
