/* Hiring Module Styles (merged into Team module) */

/* Job Card Styles */
.job-card {
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.job-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.job-card h5 a {
    color: inherit;
}

.job-card h5 a:hover {
    color: var(--bs-primary);
}


/* Job Description/Requirements formatting */
.job-description,
.job-requirements {
    white-space: pre-wrap;
    line-height: 1.6;
}

/* Pipeline Container (placeholder for Phase 4) */
.pipeline-container {
    min-height: 200px;
}

/* Stats Cards */
.card .h2 {
    font-weight: 600;
}

/* Dropdown Items */
.dropdown-item {
    font-size: 0.875rem;
}

.dropdown-item i {
    width: 16px;
    text-align: center;
}

/* Form improvements */
.form-label {
    font-weight: 500;
}

/* List group improvements */
.list-group-item-action:hover {
    background-color: var(--bs-gray-100);
}

/* Card header styling */
.card-header {
    background-color: var(--bs-gray-50);
    border-bottom: 1px solid var(--bs-gray-200);
}

.card-header h6 {
    font-weight: 600;
    color: var(--bs-gray-700);
}

/* Definition list in detail view */
dl.row dt {
    font-weight: 500;
}

dl.row dd {
    margin-bottom: 0.5rem;
}
