.counter-badge {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s ease;
}
.counter-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border-color: #cbd5e1;
}
.counter-number {
    font-size: 24px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 4px;
}
.counter-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}
.limit-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
}
.limit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}
.limit-bar-bg {
    background-color: #f1f5f9;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}
.limit-bar-fill {
    height: 100%;
    width: 0%;
    border-radius: 4px;
    transition: width 0.2s ease, background-color 0.2s ease;
}
