/*
 * File: ApplicantPipeline.css
 * Summary: Applicant tracking styles.
 *         Provides styling for recruitment pipeline:
 *         - Applicant cards
 *         - Stage progression
 *         - Status indicators
 *         - Pipeline navigation
 *         - Application forms
 *         - Candidate profiles
 *         - Interview scheduling
 * Last Edit Date: [To be filled]
 * Last Edit Purpose: [To be filled]
 */

.application-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.application-drawer {
    position: fixed;
    top: 0;
    right: -40rem;
    width: 40rem;
    height: 100vh;
    background-color: white;
    z-index: 1001;
    transition: right 0.3s ease-in-out;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.application-drawer.open {
    right: 0;
}

.application-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Embedded Job Board Styles */
.embedded-job-board {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    color: #333;
    background-color: #f8f9fa;
    padding: 20px;
}

.embedded-job-board .job-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.embedded-job-board .job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.embedded-job-board .job-title {
    color: #2c3e50;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.embedded-job-board .job-description {
    color: #666;
    margin-bottom: 15px;
}

.embedded-job-board .apply-btn {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s;
}

.embedded-job-board .apply-btn:hover {
    background-color: #218838;
    color: white;
}

.embedded-job-board .no-jobs {
    text-align: center;
    padding: 40px;
    color: #666;
}
