
.summery-invisible {
    padding: 10px 20px 5px;
}

hr.style-one {
    border: 0;
    height: 1px;
    background: #333;
    background-image: linear-gradient(to right, #ccc, #333, #ccc);
}

.form-group select.form-control:not([size]):not([multiple]) {
    height: auto !important;
}

.box-heaD {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #fff;
}

.panel-body label {
    width: 100% !important;
}
.nonBold {
    font-weight: normal;
}

.extra-nights-box {
    background: #0d9488;
    color: #fff;
    padding: 10px 16px;
    margin: 10px 0 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    cursor: pointer;
}

/* Pricing card styles */
.price-card {
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.price-card.active-card {
    border-color: #0d9488;
    box-shadow: 0 4px 24px 0 rgba(10, 49, 97, 0.12);
}

.price-card.expired-card {
    opacity: 0.45;
}

.price-card-header {
    background: linear-gradient(135deg, #0d9488 0%, #00d1b2 100%);
    color: #fff;
    padding: 14px 16px;
    text-align: center;
}

.price-card-header.accent-header {
    background: linear-gradient(135deg, #0d9488 0%, #00d1b2 100%);
}

.price-card-header h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 4px;
    text-transform: none !important;
}

.price-card-header small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.78rem;
}

.price-card-header .card-checkbox {
    display: block;
    margin: 8px auto 0;
    width: 28px;
    height: 28px;
    cursor: pointer;
    accent-color: #00d1b2;
}

.price-card-body {
    padding: 14px;
    background: #fff;
}

.price-radio-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border-radius: 8px;
    margin-bottom: 25px;
    /* border: 1px solid #e2e8f0; */
    background: #fff;
    cursor: pointer;
    transition: background 0.2s;
}

.price-radio-row:hover {
    background: #eef6ff;
}

.price-radio-row input[type="radio"] {
    accent-color: #0d9488;
    margin-right: 8px;
}

.price-badge {
    color: #a94442;
    background: #fff;
    border: 1px solid #ebccd1;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

/* Summary table */
.summary-table {
    width: 100%;
    border-collapse: collapse;
}

.summary-table td {
    padding: 10px 14px;
    border: 1px solid #ddd;
    font-size: 0.9rem;
    background-color: #eee;
}

.summary-table .price {
    background-color: #fff !important;
}

.summary-table tr:last-child td {
    border-bottom: none;
}

.summary-table .total-row td {
    background: #0d9488;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

/* Accordion policy */
.policy-accordion summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.policy-accordion summary::-webkit-details-marker {
    display: none;
}

.policy-accordion summary::after {
    content: '+';
    font-size: 1.2rem;
    color: #00d1b2;
}

.policy-accordion[open] summary::after {
    content: '−';
}

.policy-accordion .policy-body {
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 10px 10px;
    margin-bottom: 8px;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.7;
}