/* Job Detail Page Styles */

/* Container & Layout */
.job-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    margin: 0 auto;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Job Card Styles */
.job-card {
    background: var(--light-color);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Job Header */
.job-header {
    margin-bottom: 30px;
    border-bottom: 2px solid var(--light-color);
    /*padding-bottom: 25px;*/
}

.job-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--font-color-heading);
    margin-bottom: 10px;
    line-height: 1.2;
}

.job-subtitle {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.department-name {
    font-size: 14px;
    color: var(--font-color-subheading);
    font-weight: 500;
}

.job-code-badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--element-background);
    color: var(--font-color-text);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

/* Tags */
.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.tag-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #E8F4F8 0%, #D1E7F0 100%);
    color: #0C5273;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #B0D4E1;
    transition: all 0.3s ease;
}

.tag-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Specific Tag Colors - You can assign these based on tag types */
.tag-badge:nth-child(1) {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    color: #1E40AF;
    border-color: #93C5FD;
}

.tag-badge:nth-child(2) {
    background: linear-gradient(135deg, #FCE7F3 0%, #FBCFE8 100%);
    color: #9F1239;
    border-color: #F9A8D4;
}

.tag-badge:nth-child(3) {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #92400E;
    border-color: #FCD34D;
}

.tag-badge:nth-child(4) {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    color: #065F46;
    border-color: #6EE7B7;
}

.tag-badge:nth-child(5) {
    background: linear-gradient(135deg, #E0E7FF 0%, #C7D2FE 100%);
    color: #3730A3;
    border-color: #A5B4FC;
}

.tag-badge:nth-child(6) {
    background: linear-gradient(135deg, #FFEDD5 0%, #FED7AA 100%);
    color: #9A3412;
    border-color: #FDBA74;
}

.tag-badge:nth-child(7) {
    background: linear-gradient(135deg, #F3E8FF 0%, #E9D5FF 100%);
    color: #6B21A8;
    border-color: #D8B4FE;
}

.tag-badge:nth-child(8) {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    color: #991B1B;
    border-color: #FCA5A5;
}

.tag-badge.type-badge {
    background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
    color: #075985;
    border-color: #7DD3FC;
}

.tag-badge.assessment-badge {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #A16207;
    border-color: #FCD34D;
}

.tag-badge.priority-high {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    color: #DC2626;
    border-color: #F87171;
    font-weight: 600;
}

.tag-badge.priority-medium {
    background: linear-gradient(135deg, #FFEDD5 0%, #FED7AA 100%);
    color: #EA580C;
    border-color: #FB923C;
    font-weight: 600;
}

.tag-badge.priority-low {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    color: #059669;
    border-color: #34D399;
    font-weight: 600;
}

/* Deadline Button */
.deadline-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.btn-deadline {
    background-color: #FFE5E9;
    color: var(--danger);
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.btn-deadline.expired {
    background-color: #F3F4F6;
    color: #6B7280;
}

/* Job Meta Info */
.job-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0 15px 0;
}

.meta-item {
    display: flex;
    align-items: center;
    color: var(--font-color-text);
    font-size: 14px;
}

.meta-item i {
    color: var(--font-color-subheading);
    font-size: 16px;
}

.pay-type-text {
    font-size: 12px;
    color: var(--font-color-subheading);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.btn-save {
    background-color: var(--bg-color);
    border: 1px solid var(--gray-border);
    color: var(--font-color-text);
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-save:hover {
    background-color: var(--light-color);
    border-color: var(--font-color-subheading);
}

.btn-apply {
    background: var(--button-gradient);
    color: var(--font-color-label);
    border: none;
    padding: 12px 35px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(93, 45, 145, 0.3);
}

.btn-apply > a:hover {
    text-decoration: none !important;
}
/*.btn-apply:hover {*/
/*    transform: translateY(-2px);*/
/*    box-shadow: 0 4px 12px rgba(93, 45, 145, 0.3);*/
/*    color: var(--font-color-label);*/
/*}*/

/* Job Sections */
.job-section {
    margin-top: 35px;
    /*padding-top: 30px;*/
    border-top: 1px solid var(--light-color);
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--font-color-heading);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.section-title i {
    color: var(--primary-color);
}

.section-content {
    color: var(--font-color-text);
    font-size: 14px;
    line-height: 1.7;
}

.section-content p {
    margin-bottom: 15px;
}

/* Subsections */
.subsection {
    margin-bottom: 20px;
}

.subsection-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--font-color-heading);
    margin-bottom: 12px;
}

/* Custom List */
.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--font-color-text);
    font-size: 14px;
    line-height: 1.7;
}

.custom-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

/* Skills Badges */
.skills-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: var(--light-color);
    color: var(--font-color-text);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--gray-border);
    transition: all 0.2s ease;
}

.skill-badge:hover {
    background-color: var(--element-background);
    border-color: var(--border-color);
    transform: translateY(-2px);
}

.skill-badge.required {
    background: linear-gradient(135deg, #F3E8FF 0%, #E9D5FF 100%);
    border-color: #D8B4FE;
    color: #6B21A8;
}

.skill-badge.preferred {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border-color: #93C5FD;
    color: #1E40AF;
}

.skill-badge.language {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border-color: #FCD34D;
    color: #92400E;
}

.skill-score {
    margin-left: 8px;
    padding: 2px 6px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: var(--light-color);
    border-radius: 8px;
    font-size: 13px;
    color: var(--font-color-text);
    border: 1px solid var(--border-color);
}

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

/* Info Cards */
.info-card {
    background: var(--bg-color);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--font-color-heading);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.card-title i {
    color: var(--primary-color);
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--light-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -26px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 3px solid var(--bg-color);
    box-shadow: 0 0 0 2px var(--primary-color);
}

.timeline-content {
    display: flex;
    flex-direction: column;
}

.timeline-label {
    font-size: 12px;
    color: var(--font-color-subheading);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.timeline-value {
    font-size: 14px;
    color: var(--font-color-text);
    font-weight: 600;
}

/* Overview List */
.overview-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.overview-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.overview-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--element-background), var(--light-color));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.overview-icon i {
    color: var(--primary-color);
    font-size: 16px;
}

.overview-content {
    display: flex;
    flex-direction: column;
}

.overview-label {
    font-size: 12px;
    color: var(--font-color-subheading);
    font-weight: 500;
    margin-bottom: 2px;
}

.overview-value {
    font-size: 14px;
    color: var(--font-color-text);
    font-weight: 600;
}

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.active {
    background-color: #D1FAE5;
    color: #059669;
}

.status-badge.inactive {
    background-color: #FEE2E2;
    color: #DC2626;
}

/* Location Info */
.location-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-main {
    font-size: 16px;
    color: var(--font-color-heading);
    font-weight: 600;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--light-color);
}

.location-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.location-label {
    font-size: 13px;
    color: var(--font-color-subheading);
    font-weight: 500;
}

.location-value {
    font-size: 14px;
    color: var(--font-color-text);
    font-weight: 600;
}

/* Salary Card */
.salary-card {
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    border: 2px solid var(--border-color);
}

.salary-range {
    text-align: center;
}

.salary-amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.salary-period {
    font-size: 14px;
    color: var(--font-color-subheading);
    font-weight: 500;
}

/* Department Info */
.department-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-color);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 13px;
    color: var(--font-color-subheading);
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: var(--font-color-text);
    font-weight: 600;
}

/* Share Card */
.share-card {
    background: linear-gradient(135deg, #F3E8FF 0%, #E9D5FF 100%);
}

.share-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    color: white;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-btn.linkedin {
    background: linear-gradient(135deg, #0077B5, #00A0DC);
}

.share-btn.twitter {
    background: linear-gradient(135deg, #1DA1F2, #0C85D0);
}

.share-btn.facebook {
    background: linear-gradient(135deg, #1877F2, #0C63D4);
}

.share-btn.email {
    background: linear-gradient(135deg, #EA4335, #D33426);
}

.share-btn.copy {
    background: linear-gradient(135deg, #6B7280, #4B5563);
}

/* Last Updated */
.last-updated {
    padding: 12px;
    background-color: var(--light-color);
    border-radius: 8px;
    font-size: 12px;
    color: var(--font-color-subheading);
    text-align: center;
}

/* Responsive Design */

/* Large Tablets and Small Desktops (992px - 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }

    .job-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 19px;
    }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .py-5 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .job-card {
        padding: 20px;
    }

    .job-title {
        font-size: 26px;
    }

    .job-header {
        /*padding-bottom: 20px;*/
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-save,
    .btn-apply {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .info-card {
        margin-top: 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .share-buttons {
        gap: 8px;
    }

    .share-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .timeline {
        padding-left: 25px;
    }

    .timeline-marker {
        left: -22px;
    }

    /* Stack sidebar cards vertically on tablets */
    .col-lg-4 {
        margin-top: 20px;
    }
}

/* Mobile Landscape and Small Tablets (576px - 767px) */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .job-card {
        padding: 16px;
        border-radius: 10px;
    }

    .job-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .job-header {
        margin-bottom: 20px;
        /*padding-bottom: 15px;*/
    }

    .job-subtitle {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .job-subtitle .ms-3 {
        margin-left: 0;
    }

    .job-meta-info {
        flex-direction: column;
        gap: 12px;
        padding: 15px 0 10px 0;
    }

    .meta-item {
        font-size: 13px;
    }

    .meta-item i {
        font-size: 14px;
    }

    .job-tags {
        gap: 6px;
    }

    .tag-badge {
        font-size: 11px;
        padding: 5px 10px;
    }

    .skills-badges {
        gap: 8px;
    }

    .skill-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .section-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .subsection-title {
        font-size: 15px;
    }

    .section-content {
        font-size: 13px;
    }

    .custom-list li {
        font-size: 13px;
        padding-left: 20px;
        margin-bottom: 10px;
    }

    .salary-amount {
        font-size: 24px;
    }

    .salary-period {
        font-size: 13px;
    }

    .deadline-section {
        width: 100%;
        align-items: flex-start;
        margin-top: 10px;
    }

    .btn-deadline {
        font-size: 12px;
        padding: 7px 14px;
    }

    .info-card {
        padding: 18px;
        border-radius: 10px;
        margin-bottom: 16px;
    }

    .card-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .overview-item {
        gap: 10px;
    }

    .overview-icon {
        width: 36px;
        height: 36px;
    }

    .overview-icon i {
        font-size: 14px;
    }

    .timeline-label {
        font-size: 11px;
    }

    .timeline-value {
        font-size: 13px;
    }

    .location-main {
        font-size: 15px;
    }

    .location-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .share-btn {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .benefit-item {
        font-size: 12px;
        padding: 8px 12px;
    }

    .job-section {
        margin-top: 25px;
        padding-top: 20px;
    }
}

/* Mobile Portrait (480px - 575px) */
@media (max-width: 575px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .py-5 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .mt-5 {
        margin-top: 1rem !important;
    }

    .job-card {
        padding: 14px;
        border-radius: 8px;
    }

    .job-title {
        font-size: 20px;
    }

    .job-header {
        margin-bottom: 16px;
    }

    .department-name {
        font-size: 13px;
    }

    .job-code-badge {
        font-size: 11px;
        padding: 3px 10px;
    }

    .tag-badge {
        font-size: 10px;
        padding: 4px 8px;
    }

    .btn-save,
    .btn-apply {
        padding: 10px 20px;
        font-size: 13px;
    }

    .action-buttons {
        gap: 10px;
        margin-top: 15px;
    }

    .section-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .subsection-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .section-content {
        font-size: 13px;
        line-height: 1.6;
    }

    .skill-badge {
        font-size: 11px;
        padding: 5px 10px;
    }

    .skill-score {
        font-size: 10px;
        padding: 2px 5px;
    }

    .benefits-grid {
        gap: 10px;
    }

    .benefit-item {
        font-size: 11px;
        padding: 8px 10px;
    }

    .info-card {
        padding: 14px;
        margin-bottom: 14px;
    }

    .card-title {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .overview-item {
        gap: 8px;
    }

    .overview-icon {
        width: 32px;
        height: 32px;
    }

    .overview-icon i {
        font-size: 13px;
    }

    .overview-label {
        font-size: 11px;
    }

    .overview-value {
        font-size: 13px;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline:before {
        left: 6px;
    }

    .timeline-marker {
        left: -18px;
        width: 10px;
        height: 10px;
        border-width: 2px;
    }

    .timeline-item {
        margin-bottom: 20px;
    }

    .salary-amount {
        font-size: 20px;
    }

    .salary-period {
        font-size: 12px;
    }

    .share-buttons {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .share-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .detail-item,
    .location-detail {
        padding: 8px 0;
    }

    .detail-label,
    .location-label {
        font-size: 12px;
    }

    .detail-value,
    .location-value {
        font-size: 13px;
    }

    .last-updated {
        font-size: 11px;
        padding: 10px;
    }

    .job-section {
        margin-top: 20px;
        padding-top: 16px;
    }
}

/* Extra Small Mobile (320px - 479px) */
@media (max-width: 479px) {
    .container {
        padding-left: 8px;
        padding-right: 8px;
    }

    .job-card {
        padding: 12px;
    }

    .job-title {
        font-size: 18px;
        word-break: break-word;
    }

    .job-subtitle {
        gap: 5px;
    }

    .department-name {
        font-size: 12px;
    }

    .job-code-badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    .tag-badge {
        font-size: 10px;
        padding: 4px 8px;
    }

    .meta-item {
        font-size: 12px;
    }

    .meta-item i {
        font-size: 13px;
        margin-right: 6px;
    }

    .btn-save,
    .btn-apply {
        padding: 10px 16px;
        font-size: 12px;
    }

    .section-title {
        font-size: 15px;
    }

    .subsection-title {
        font-size: 13px;
    }

    .section-content,
    .custom-list li {
        font-size: 12px;
    }

    .custom-list li {
        padding-left: 18px;
    }

    .custom-list li:before {
        font-size: 16px;
    }

    .skill-badge {
        font-size: 10px;
        padding: 4px 8px;
    }

    .info-card {
        padding: 12px;
    }

    .card-title {
        font-size: 14px;
    }

    .overview-icon {
        width: 30px;
        height: 30px;
    }

    .overview-icon i {
        font-size: 12px;
    }

    .overview-label,
    .timeline-label {
        font-size: 10px;
    }

    .overview-value,
    .timeline-value {
        font-size: 12px;
    }

    .salary-amount {
        font-size: 18px;
    }

    .salary-period {
        font-size: 11px;
    }

    .share-btn {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .benefit-item {
        font-size: 11px;
        padding: 6px 10px;
    }

    .benefit-item i {
        font-size: 12px;
    }
}

/* Landscape Orientation Adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .py-5 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .job-header {
        margin-bottom: 15px;
        /*padding-bottom: 15px;*/
    }

    .job-section {
        margin-top: 15px;
        padding-top: 15px;
    }

    .info-card {
        margin-bottom: 12px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .job-card,
    .info-card {
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    }
}

/* Print Styles */
@media print {
    .action-buttons,
    .share-card,
    .btn-deadline {
        display: none !important;
    }

    .job-card,
    .info-card {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }

    .container {
        max-width: 100%;
    }

    .py-5 {
        padding-top: 0;
        padding-bottom: 0;
    }
}

/* Utility Classes */
.d-flex {
    display: flex;
}

.align-items-start {
    align-items: flex-start;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

.flex-grow-1 {
    flex-grow: 1;
}

.flex-wrap {
    flex-wrap: wrap;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.me-1 {
    margin-right: 0.25rem;
}

.me-2 {
    margin-right: 0.5rem;
}

.me-3 {
    margin-right: 1rem;
}

.ms-3 {
    margin-left: 1rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.job-card,
.info-card {
    animation: fadeIn 0.4s ease-out;
}

.job-section:nth-child(2) {
    animation-delay: 0.1s;
}

.job-section:nth-child(3) {
    animation-delay: 0.2s;
}

.job-section:nth-child(4) {
    animation-delay: 0.3s;
}
