#dailybuddy_quick_stats .hndle::before {
    content: '\f185';
    font-family: dashicons;
    margin-right: 12px;
    font-size: 20px;
    color: #000;
}

#dailybuddy_quick_stats .quick-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px;
    margin-top: 8px;
}

#dailybuddy_quick_stats .quick-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px;
    margin-top: 8px;
}

#dailybuddy_quick_stats .stat-card {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 10px;
    border-left: 3px solid #2271b1;
    transition: all 0.3s ease;
}

#dailybuddy_quick_stats .stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

#dailybuddy_quick_stats .stat-card.posts {
    border-left-color: #2271b1;
}

#dailybuddy_quick_stats .stat-card.pages {
    border-left-color: #00a32a;
}

#dailybuddy_quick_stats .stat-card.comments {
    border-left-color: #d63638;
}

#dailybuddy_quick_stats .stat-card.users {
    border-left-color: #8c44b3;
}

#dailybuddy_quick_stats .stat-card.media {
    border-left-color: #f0b849;
}

#dailybuddy_quick_stats .stat-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

#dailybuddy_quick_stats .stat-icon {
    font-size: 18px;
    opacity: 0.7;
}

#dailybuddy_quick_stats .stat-title {
    font-size: 11px;
    font-weight: 600;
    color: #1d2327;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#dailybuddy_quick_stats .stat-items {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#dailybuddy_quick_stats .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 0;
}

#dailybuddy_quick_stats .stat-label {
    font-size: 11px;
    color: #646970;
}

#dailybuddy_quick_stats .stat-value {
    font-size: 14px;
    font-weight: 600;
    color: #1d2327;
}

#dailybuddy_quick_stats .stat-value.highlight {
    color: #d63638;
}

#dailybuddy_quick_stats .stat-divider {
    height: 1px;
    background: #dcdcde;
    margin: 2px 0;
}

#dailybuddy_quick_stats .storage-bar {
    margin-top: 6px;
    height: 6px;
    background: #dcdcde;
    border-radius: 3px;
    overflow: hidden;
}

#dailybuddy_quick_stats .storage-fill {
    height: 100%;
    background: linear-gradient(90deg, #00a32a 0%, #f0b849 70%, #d63638 100%);
    transition: width 0.3s ease;
}

#dailybuddy_quick_stats .storage-text {
    font-size: 10px;
    color: #646970;
    margin-top: 3px;
}