.dashboard-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 1.5rem;
    background-color: #fff;
    background-color: #fff;
}

.dashboard-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.dashboard-card .card-body {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dashboard-card-header {
    padding: 1.25rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.dashboard-card-header.header-green-active {
    background: linear-gradient(135deg, #586321 0%, #6b7a2e 100%);
}

.dashboard-card-header.header-green-inactive {
    background: linear-gradient(135deg, #90ac19 0%, #a8c42e 100%);
}

.dashboard-card-header.header-blue {
    background: linear-gradient(135deg, #193a5c 0%, #264d75 100%);
}

.dashboard-card-header h5 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    text-align: center;
}

.dashboard-card-header i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.dashboard-card-content {
    padding: 1.25rem;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.dashboard-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.dashboard-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #586321;
    line-height: 1.1;
}

.dashboard-stat-label {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
}

.dashboard-info-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.dashboard-info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
}

.dashboard-info-label {
    font-size: 0.9rem;
    color: #6c757d;
}

.dashboard-status {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.dashboard-status.status-success {
    background-color: rgba(141, 196, 146, 0.15);
    color: #4a8a50;
}

.dashboard-status.status-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.dashboard-status.status-warning {
    background-color: rgba(255, 193, 7, 0.15);
    color: #856404;
}

.dashboard-empty-state {
    text-align: center;
    padding: 1.5rem;
    color: #6c757d;
}

.dashboard-empty-state i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.dashboard-empty-state p {
    margin: 0;
    font-weight: 500;
}