﻿/* ========================================
   Approve Dashboard Styles
   ======================================== */

/* Count Badge */
.count-badge {
    background-color: #dc3545;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    min-width: 30px;
    display: inline-block;
    text-align: center;
}

.count-badge-warning {
    background-color: #ffc107;
    color: #856404;
}

.count-badge-success {
    background-color: #28a745;
    color: white;
}

/* Status Badge */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
}

.status-pending {
    background-color: #fff3cd;
    color: #856404;
}

.status-approved {
    background-color: #d4edda;
    color: #155724;
}

.status-rejected {
    background-color: #f59da5;
    color: #721c24;
}

/* Card Header */
.card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.card-title-flex {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* View All Link */
.view-link {
    color: var(--main-theme-color, #ff6b35);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

    .view-link:hover {
        text-decoration: underline;
    }

.status-cancelled {
    background-color: #e2e3e5;
    color: #6c757d;
}

.count-badge-secondary {
    background-color: #6c757d;
    color: white;
}

.bold-highlight-sub {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.status-badge {
    transition: all 0.2s ease;
}

    .status-badge:hover {
        transform: translateY(-1px);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }