﻿body {
}

.teacher-card {
    border-radius: 12px;
    overflow: hidden;
}

.img-wrapper {
    width: 100%;
    height: 380px; /* controls card image height */
    overflow: hidden;
}

    .img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* makes image cover area */
        display: block;
    }

.card-body {
    line-height: 1.25;
}

    .card-body .small {
        margin-bottom: 2px;
    }

.dept-header {
    background: linear-gradient(135deg, #1093a0, #cb8d36);
    color: white;
    padding: 30px 20px;
    text-align: center;
    border-bottom-left-radius:10px;
    border-bottom-right-radius:10px;

    margin-bottom: 30px;
}

.dept-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 25px;
    transition: 0.3s;
}

    .dept-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

.section-title {
    font-weight: 600;
    color: #800000;
    margin-bottom: 15px;
    border-left: 5px solid #b30000;
    padding-left: 10px;
}

.intake-table {
    width: 100%;
    border-collapse: collapse;
}

    .intake-table th, .intake-table td {
        padding: 10px;
        border: 1px solid #ddd;
        text-align: center;
    }

    .intake-table th {
        background-color: #800000;
        color: white;
    }

 