/* hotel-stats.css */
.hotel-stats-container {
    margin: 16px 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.hotel-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.hotel-stats-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.hotel-stats-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hotel-stats-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hotel-stats-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.hotel-stats-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.hotel-stats-label {
    font-size: 14px;
    color: #475569;
    font-weight: 600;
    flex: 1;
}

.hotel-stats-value {
    display: flex;
    align-items: baseline;
    gap: 5px;
    justify-content: flex-end;
    flex: 1;
}

.hotel-stats-number {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
}

.hotel-stats-unit {
    font-size: 13px;
    color: #64748b;
}

/* Màu sắc */
.hotel-stats-green {
    border-color: #c7f9cc;
    background: linear-gradient(0deg, #f0fff4, #fff);
}

.hotel-stats-blue {
    border-color: #bae6fd;
    background: linear-gradient(0deg, #f0f9ff, #fff);
}

.hotel-stats-amber {
    border-color: #fde68a;
    background: linear-gradient(0deg, #fffbeb, #fff);
}

/* Responsive */
@media (max-width: 900px) {
    .hotel-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Error message */
.hotel-stats-error {
    padding: 15px;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin: 10px 0;
}