﻿
/* mBooking - Credit Cards */

.mBooking-creditcard-container {
    padding: 0 6px 0 18px;
    border-radius: 18px;
    overflow-y: auto;
}

.mBooking-creditcard-content {
    padding: 10px 10px;
    background-color: indianred;
    border-radius: 8px;
}

.mBooking-creditcard-header {
    vertical-align: bottom;
    margin: 0 14px 0 14px;
    background: linear-gradient(135deg, #cc0000 0%, #ff6666 60%, #ffffff 100%);
    padding: 8px 0 0 16px;
    height: 40px;
    border-radius: 18px;
    font-size: 14px;
    color: white;
}

.mBooking-creditcard-title {
    margin-top: -8px;
}

.mBooking-creditcard-button-add {
    flex: 1;
    padding: 3px 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-creditcard-button-add:hover {
        background: linear-gradient(135deg, #990000 0%, #ff5555 60%);
    }

.mBooking-creditcard-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-creditcard-button:hover {
        background: linear-gradient(135deg, #990000 0%, #ff5555 60%);
    }

.mBooking-creditcard-icon {
    padding: 0 18px 0 18px;
}

.mBooking-creditcard-list {
    padding: 10px 0 4px 4px;
    height: auto;
    line-height: 1.0;
    font-weight: bold;
    font-size: 14px;
    color: white;
    margin: 0 0 0 10px;
}

.mBooking-creditcard-label {
    padding: 10px 0 4px 4px;
    height: auto;
    line-height: 1.0;
    font-weight: bold;
    font-size: 14px;
    color: white;
    margin: 0 0 0 62px;
}

.mBooking-creditcard-card {
    background: antiquewhite;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 8px;
    margin: 18px 60px 18px 60px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.15);
}

.mBooking-creditcard-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: black;
}

.mBooking-creditcard-row-label {
    flex: 1;
    min-width: 0;
}

.mBooking-creditcard-row-value {
    text-align: right;
}

.mBooking-creditcard-field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding: 2px 0;
}

.mBooking-creditcard-select {
    vertical-align: central;
    height: 34px;
    font-weight: bold;
    font-size: 14px;
    background-color: white;
    color: blue;
}

    .mBooking-creditcard-select option {
        background-color: white;
        color: black;
    }

.mBooking-creditcard-text {
    vertical-align: central;
    font-weight: bold;
    font-size: 14px;
    color: blue;
}

.mBooking-creditcard-text-composite {
    position: relative;
    width: 250px;
    margin: 4px 62px
}

.mBooking-creditcard-bar-top {
    margin: 8px 54px;
}

.mBooking-creditcard-bar {
    margin: 8px 80px;
}

.mBooking-creditcard-item {
    position: relative;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 18px 20px;
    margin: 14px 54px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.2s ease-in-out;
}

    .mBooking-creditcard-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    }

.mBooking-creditcard-number {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #222;
    margin-bottom: 6px;
}

.mBooking-creditcard-supplier {
    font-size: 14px;
    font-weight: bold;
    color: #666;
    margin-bottom: 10px;
}

.mBooking-creditcard-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: bold;
    color: #888;
}

.mBooking-creditcard-remove {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: transparent;
    color: #cc0000;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s;
}

    .mBooking-creditcard-remove:hover {
        color: #990000;
    }
    