/* Custom CSS for Teacher Job Portal */

/* Profile Image */
.profile-img {
    max-width: 200px;
    max-height: 200px;
    object-fit: cover;
}

/* Job Cards */
.job-card {
    transition: transform 0.2s;
    border: 1px solid #dee2e6;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,.15);
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 100;
}

/* Forms */
.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Buttons */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

/* Alerts */
.alert {
    border-radius: 0.375rem;
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #dee2e6;
}

/* Badges */
.badge {
    font-weight: 500;
}

/* Card Headers */
.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

/* Tables */
.table th {
    border-top: none;
}

/* Jumbotron */
.jumbotron {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
}