.metric-card {
transition: all 0.3s ease;
}
.metric-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}
.chart-container {
position: relative;
height: 300px;
width: 100%;
}
.trend-indicator {
font-size: 0.8rem;
padding: 2px 6px;
border-radius: 4px;
}
.trend-up {
color: #198754;
background-color: rgba(25, 135, 84, 0.1);
}
.trend-down {
color: #dc3545;
background-color: rgba(220, 53, 69, 0.1);
}
.trend-neutral {
color: #6c757d;
background-color: rgba(108, 117, 125, 0.1);
}
.satisfaction-meter {
height: 8px;
border-radius: 4px;
background: linear-gradient(to right, #dc3545, #ffc107, #198754);
}
.satisfaction-indicator {
width: 16px;
height: 16px;
border-radius: 50%;
border: 2px solid #fff;
background-color: #000;
position: absolute;
top: -4px;
transform: translateX(-50%);
box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
.table-hover tbody tr:hover {
background-color: rgba(13, 110, 253, 0.05);
}
