.quickstats-container {
padding: 15px;
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.quickstats-box {
display: flex;
flex-direction: column;
gap: 15px;
}
.quickstats-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
background: #f8f9fa;
border-radius: 6px;
transition: all 0.3s ease;
margin-bottom: 15px;
text-align: center;
}
.quickstats-item:last-child {
margin-bottom: 0;
}
.quickstats-item:hover {
background: #e9ecef;
transform: translateY(-2px);
}
.quickstats-label {
color: #495057;
font-size: 14px;
font-weight: 500;
}
.quickstats-widget {
padding: 15px;
background: #fff;
border: 1px solid #e0e0e0;
border-radius: 4px;
}
.quickstats-item {
margin-bottom: 10px;
}
.quickstats-item:last-child {
margin-bottom: 0;
}
.quickstats-item h4 {
margin: 0 0 5px 0;
font-size: 14px;
color: #666;
}
.quickstats-value {
margin: 0;
font-size: 18px;
font-weight: bold;
color: #1976d2;
transition: background-color 0.3s ease;
}
.quickstats-value.updating {
background-color: rgba(25, 118, 210, 0.1);
border-radius: 4px;
padding: 2px 4px;
margin: -2px -4px;
} @keyframes highlight {
0% { background-color: #228be6; color: white; }
100% { background-color: #f8f9fa; color: #228be6; }
}
.quickstats-value.updated {
animation: highlight 1s ease-out;
}
#quickstats-widget {
padding: 10px;
background: #fff;
border-radius: 4px;
}