.icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.icon-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 6px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #333;
}
.icon-list li i {
    width: 22px;
    margin-right: 10px;
    text-align: center;
    color: #f39c12; /* Matches your btn-warning theme */
    flex-shrink: 0;
    margin-top: 3px;
}
.icon-list li:hover i {
    color: #e67e22;
    transition: color 0.2s ease;
}

.btn-custom-color-button:active,
.btn-custom-color-button,
.open > .btn-custom-color-button {
    color: #fff;
    background-color: #ec971f;
    background-image: none;
    border-color: #d58512;
}

/* Room Rate Calendar */
.room-rate-calendar {
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
}

.calendar-container {
    max-width: 520px;
    margin: 0 auto;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-nav {
    background: none;
    border: 2px solid #ec971f;
    color: #ec971f;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
}
.calendar-nav:hover {
    background: #ec971f;
    color: #fff;
}

.calendar-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 600;
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.cal-cell {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    border-radius: 6px;
    padding: 3px;
    cursor: default;
    position: relative;
    background: #f8f9fa;
    font-size: 0.85rem;
    transition: all 0.15s ease;
    min-height: 86px;
}

.cal-cell.empty {
    background: transparent;
    cursor: default;
}

.cal-cell.has-rate {
    background: rgba(236, 151, 31, 0.08);
    border: 1px solid rgba(236, 151, 31, 0.3);
    cursor: pointer;
}

.cal-cell.has-rate:hover {
    background: rgba(236, 151, 31, 0.22);
    border-color: #ec971f;
    transform: scale(1.08);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(236, 151, 31, 0.2);
}

.cal-cell.today {
    border: 2px solid #333;
    font-weight: 700;
}

.cal-cell.today.has-rate {
    border: 2px solid #ec971f;
}

.cal-day {
    font-weight: 600;
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2;
}

.cal-rates {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-top: 2px;
}

.cal-rate {
    font-size: 0.62rem;
    color: #b3740d;
    font-weight: 500;
    white-space: nowrap;
    line-height: 1.25;
}
.cal-rate b {
    color: #ec971f;
    font-weight: 700;
    font-size: 0.58rem;
}

.calendar-legend {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    font-size: 0.78rem;
    color: #777;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.legend-dot {
    width: 13px;
    height: 13px;
    border-radius: 3px;
    display: inline-block;
    flex-shrink: 0;
}

.legend-dot.available {
    background: rgba(236, 151, 31, 0.2);
    border: 1px solid rgba(236, 151, 31, 0.5);
}

.legend-dot.today {
    border: 2px solid #333;
    background: #fff;
}

.calendar-detail {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    border-left: 4px solid #ec971f;
}

.rate-card {
    background: #fff;
    border-radius: 6px;
    padding: 0.5rem;
    text-align: center;
}
.rate-card small {
    display: block;
    font-size: 0.72rem;
    color: #888;
    margin-bottom: 2px;
}
.rate-card strong {
    font-size: 0.95rem;
    color: #333;
}
