/* --------- GLOBAL STYLES --------- */

body {
    font-family: 'Inter', 'Roboto', sans-serif !important;
    background: #f5f7fb;
    margin: 0;
    padding: 0;
}

/* Container */
.dna-container {
    background: #ffffff;
    padding: 30px;
    margin: 30px auto;
    max-width: 1100px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Page Heading */
.dna-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #222;
}

/* Buttons */
.dna-btn {
    background: #4f46e5;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.dna-btn:hover {
    background: #3730a3;
}

/* Tables */
.dna-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.dna-table th {
    background: #f0f2f6;
    font-weight: 700;
    padding: 12px;
    border-bottom: 2px solid #ddd;
    color: #333;
}

.dna-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

/* Row hover */
.dna-table tr:hover td {
    background: #fafafa;
}

/* Status Buttons – P / A / L */
.att-btn {
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 6px;
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-present { background: #16a34a; }
.btn-absent { background: #dc2626; }
.btn-leave { background: #f59e0b; }

.att-active {
    border: 2px solid #000;
}

/* Dashboard Cards */
.dna-card {
    padding: 20px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.dna-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Toppers Section */
.topper-box {
    background: #e0f7ff;
    border-left: 5px solid #0284c7;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}
.topper-title {
    font-size: 22px;
    font-weight: 700;
    color: #0284c7;
}

/* Dropdowns */
select, input[type="date"] {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 15px;
    margin-right: 15px;
}
