
:root {
    --primary-color: #097F29;
    --secondary-color: #e8f5e9;
    --white: #fff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.btn-custom-primary {
    background-color: var(--primary-color);
    color: var(--white);
    transition: all 0.3s ease;
    border: none;
    padding: 10px 24px;
    font-weight: 500;
}

.btn-custom-primary:hover {
    background-color: #076621;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-outline-custom {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.job-header {
    background-color: var(--primary-color);
    padding: 40px 0;
}

.job-title {
    font-weight: 700;
    margin-bottom: 8px;
}

.job-company {
    font-weight: 500;
    opacity: 0.9;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.job-meta-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.job-meta-item i {
    margin-right: 8px;
}

.section-title {
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.job-detail-card {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
    border: none;
}

.job-detail-card .card-header {
    background-color: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px 20px;
}

.job-detail-card .card-body {
    padding: 20px;
}

.job-tag {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50px;
    padding: 6px 14px;
    margin-right: 8px;
    margin-bottom: 8px;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
}

.job-info-item {
    display: flex;
    margin-bottom: 16px;
}

.job-info-label {
    min-width: 140px;
    font-weight: 600;
    color: #555;
}

.job-info-value {
    flex: 1;
}

.job-description {
    line-height: 1.7;
}

.job-description p {
    margin-bottom: 16px;
}

.job-description ul {
    padding-left: 20px;
}

.job-description li {
    margin-bottom: 8px;
}

.sticky-apply {
    position: sticky;
    top: 20px;
}

.company-logo {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    color: #555;
    background-color: #f1f1f1;
    transition: all 0.2s ease;
}

.share-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.deadline-alert {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 12px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.deadline-alert i {
    color: #ffc107;
    font-size: 20px;
    margin-right: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.benefit-item i {
    color: var(--primary-color);
    margin-right: 10px;
}

@media (max-width: 767px) {
    .job-meta {
        gap: 12px;
    }

    .job-info-item {
        flex-direction: column;
    }

    .job-info-label {
        margin-bottom: 4px;
    }
}

