/* --- Faculty Styles (Internal) --- */
.faculty-card {
    border: none;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.faculty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.faculty-card .card-header {
    background-color: white;
    padding: 1.25rem;
    border-bottom: 1px solid #eee;
    border-radius: 12px 12px 0 0 !important;
}

.faculty-logo {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.faculty-card .card-body {
    padding: 1.25rem;
    text-align: center;
}

.faculty-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.85rem;
    font-weight: bold;
    border-radius: 20px;
    color: white;
    margin-bottom: 8px;
}

.faculty-badge-blue { background-color: #007bff; }
.faculty-badge-yellow { background-color: #ffc107; color: #000; }
.faculty-badge-red { background-color: #dc3545; }
.faculty-badge-green { background-color: #28a745; }
.faculty-badge-purple { background-color: #6f42c1; }

.faculty-card .card-footer {
    background-color: white;
    padding: 1rem;
    border-top: 1px solid #eee;
    border-radius: 0 0 12px 12px !important;
}

.btn-faculty-details {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
}

#facultyModal .modal-body {
    padding: 1.5rem;
}

#modalFacultyLogo {
    max-height: 120px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.detail-item i {
    width: 30px;
    color: #007bff;
}

.detail-item div {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.8rem;
    color: #6c757d;
}

.detail-value {
    font-weight: 500;
    color: #333;
}

.divider {
    width: 80px;
    height: 4px;
    background: #007bff;
    border-radius: 2px;
    margin: 1rem auto;
}