/* ===== STATUS BADGES ===== */

.status-badge {
    display: inline-block;
    padding: 6px 7px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    min-width: 130px;
}

.status-badge small {
    display: block;
    font-size: 11px;
    font-weight: 500;
    opacity: 0.9;
}

.status-approved {
    background: #e6f7ee;
    color: #198754;
}

.status-rejected {
    background: #fdecea;
    color: #dc3545;
}

.status-notapproved {
    background: #fff4e5;
    color: #fd7e14;
 /*color: #cd0a0a;*/
 
}

.status-pending {
    background: #e8f0fe;
    color: #dc3545;
}

/* ===== ACTION BUTTON ===== */

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 14px;
    background: #0d6efd;
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.action-btn i {
    font-size: 14px;
}

.action-btn:hover {
    background: #0b5ed7;
    color: #fff;
    transform: translateY(-1px);
}

.action-btn-success {
    background: #198754;
}

.action-btn-success:hover {
    background: #146c43;
}

/* Mobile fit */
@media (max-width: 768px) {
    .status-badge {
        min-width: auto;
        font-size: 12px;
        padding: 5px 7px;
    }
    .action-btn span {
        display: none; /* icon only on mobile */
    }
}


/* Verify button - red action required */
.action-btn-danger {
    background:#dc3545;
    color:#fff;
}

.action-btn-danger:hover {
    background:#b02a37;
    color:#fff;
    box-shadow:0 0 0 3px rgba(220,53,69,0.3);
}

/* Slight pulse effect to attract attention (optional) */
.action-btn-danger {
    animation: verifyPulse 2s infinite;
}

@keyframes verifyPulse {
    0%   { box-shadow:0 0 0 0 rgba(220,53,69,0.4); }
    70%  { box-shadow:0 0 0 13px rgba(220,53,69,0); }
    100% { box-shadow:0 0 0 0 rgba(220,53,69,0); }
}


.action-btn-danger {
    background:#dc3545;
    color:#fff;
}

.action-btn-danger:hover {
    background:#b02a37;
    color:#fff;
    box-shadow:0 0 0 3px rgba(220,53,69,0.3);
}

/* Optional pulse attention */
.action-btn-danger {
    animation: verifyPulse 2s infinite;
}

@keyframes verifyPulse {
    0%   { box-shadow:0 0 0 0 rgba(220,53,69,0.4); }
    70%  { box-shadow:0 0 0 13px rgba(220,53,69,0); }
    100% { box-shadow:0 0 0 0 rgba(220,53,69,0); }
}


