/* MPD Web Application Custom Styles */

body {
    font-size: 0.9rem;
}

.table th {
    white-space: nowrap;
    font-size: 0.85rem;
}

.table td {
    font-size: 0.85rem;
}

/* Sortable column headers */
.sortable {
    cursor: pointer;
    user-select: none;
}
.sortable:hover {
    background-color: rgba(0,0,0,.05);
}
.sortable .bi {
    font-size: 0.7rem;
    opacity: 0.4;
}
.sortable.active .bi {
    opacity: 1;
}

/* Dashboard cards */
.stat-card {
    transition: transform 0.15s;
}
.stat-card:hover {
    transform: translateY(-2px);
}
.stat-card .display-6 {
    font-weight: 600;
}

/* Form styling */
.form-section {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

/* Missing mappings checkbox styling */
.checkbox-cell {
    cursor: pointer;
    text-align: center;
    font-size: 1.1rem;
}
.checkbox-cell:hover {
    background-color: rgba(13, 110, 253, 0.1);
}

/* Navbar active state */
.navbar .nav-link.active {
    font-weight: 600;
}

/* Compact pagination */
.pagination {
    margin-bottom: 0;
}

/* Search form inline styling */
.search-form .form-control {
    max-width: 300px;
}
