/* assets/css/style.css */
body {
    background-color: #f4f7f6;
    color: #444;
}

.card {
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05); transition: transform 0.2s;
}

.btn {
    border-radius: 8px;
    padding: 10px 20px;
}

.table thead {
    background: #ecf0f1;
    color: #2c3e50;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.badge-admin { background-color: #e74c3c; }
.badge-employee { background-color: #2ecc71; }

/* Mobile optimization for tables */
@media (max-width: 768px) {
    .table-responsive-stack thead {
        display: none;
    }
    .table-responsive-stack tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #dee2e6;
        border-radius: 12px;
        background: #fff;
        padding: 10px;
    }
    .table-responsive-stack td {
        display: block;
        text-align: right;
        border-top: 1px solid #eee;
        position: relative;
        padding-left: 50%;
    }
    .table-responsive-stack td:first-child {
        border-top: none;
    }
    .table-responsive-stack td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: 45%;
        text-align: left;
        font-weight: bold;
        color: #2c3e50;
    }
}

