/* Global card, table, and layout tweaks extracted from templates/base.html */
.card {
    border: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
    margin-bottom: 1.5rem;
}

.card:hover {
    transform: translateY(-2px);
}

.card-title {
    padding-bottom: 15px;
    position: relative;
    font-size: 18px;
    font-weight: 600;
}

.card-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 50px;
    background-color: #4154f1;
}

.table-responsive {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
}

.table thead th {
    background-color: #f6f9ff;
    border-bottom: 2px solid #e0e0e0;
    font-weight: 600;
}

.table tbody tr:hover {
    background-color: #f8f9fa;
}

.form-control:focus {
    box-shadow: none;
    border-color: #4154f1;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.section {
    padding: 40px 0;
}

/* .dashboard .card {
    height: 100%;
} */

.pagetitle {
    margin-bottom: 30px;
}

.pagetitle h1 {
    font-size: 24px;
    font-weight: 600;
    color: #012970;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    font-size: 14px;
    margin-top: 8px;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #899bbd;
}

@media (max-width: 768px) {
    .pagetitle {
        margin-bottom: 20px;
    }

    .section {
        padding: 20px 0;
    }

    .card {
        margin-bottom: 1rem;
    }
}
