/* Job Vacancy Manager - Frontend Styles */

.job-info-container {
    border-left: 4px solid #007bff;
    background: #ffffff;
    padding: 20px 25px;
    margin: 15px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    max-width: 600px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
}

.job-info-item {
    display: flex;
    align-items: center;
    margin: 12px 0;
    font-size: 15px;
    line-height: 1.6;
}

.job-info-item:first-child {
    margin-top: 0;
}

.job-icon {
    width: 24px;
    margin-right: 12px;
    font-size: 16px;
    flex-shrink: 0;
}

/* Icon Colors */
.fa-briefcase {
    color: #ff6b35;
}

.fa-users {
    color: #4a5568;
}

.fa-clock {
    color: #718096;
}

.fa-calendar-alt {
    color: #e53e3e;
}

.fa-calendar-day {
    color: #e53e3e;
}

.fa-ban {
    color: #e53e3e;
}

/* Labels */
.job-label {
    font-weight: 600;
    color: #2d3748;
    margin-right: 8px;
    white-space: nowrap;
}

.other-label {
    color: #e53e3e;
}

.closed-label {
    color: #e53e3e;
    font-weight: 700;
}

/* Values */
.job-value {
    color: #2d3748;
}

.category-value,
.vacancies-value {
    color: #16a34a;
    font-weight: 600;
}

.deadline-date {
    color: #2d3748;
    font-weight: 500;
}

/* Arrow and Days Left */
.job-arrow {
    margin: 0 10px;
    color: #cbd5e0;
    font-weight: normal;
}

.job-days-left {
    color: #e53e3e;
    font-weight: 600;
}

.job-closed-text {
    color: #e53e3e;
    font-weight: 600;
}

/* Other Deadlines Section */
.other-deadlines-header {
    margin-top: 18px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
}

.other-deadline-item {
    padding-left: 36px;
    margin: 8px 0;
}

.other-deadline-item .job-icon {
    width: 20px;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 600px) {
    .job-info-container {
        padding: 15px 18px;
    }

    .job-info-item {
        font-size: 14px;
        flex-wrap: wrap;
    }

    .job-label {
        margin-bottom: 4px;
    }

    .job-arrow {
        margin: 0 6px;
    }
}