/* =========================================================
   RAG Admin Portal CSS
========================================================= */


/* Common card style */
.card-simple {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 1.5rem;
    border-radius: 8px;
    transition: background-color 0.15s;
}

    .card-simple:hover {
        background-color: #f8f8f8;
    }

/* Tables */
.table-rag {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
}

    .table-rag th {
        background: #f7f7f7;
        font-weight: 600;
    }

    .table-rag td {
        padding: 0.75rem;
        vertical-align: middle;
    }

/* Tag labels */
.tag {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

.tag-success {
    background: #d1f5e1;
    color: #137a38;
}

.tag-warn {
    background: #fff3cd;
    color: #8a6d1d;
}

.tag-danger {
    background: #f8d7da;
    color: #842029;
}
