.cart-item-quantity button {
    padding: 11px 20px !important;
}

.career-container {
    margin: 0 auto;
}

.career-header {
    text-align: center;
    margin-bottom: 3rem;
}

.main-header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 50px 0;
}

.main-header img{
    margin-top: 20px;
    width: 150px;
}

.career-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}
.career-description{
    width: 100%;
    display: flex;
}
.both-parts{
    width: 50%;
}

.first-part{
    font-size: 20px;
}

.first-part > p > span{
    font-weight: 800;
}

.second-part > img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.career-container > h2{
    font-size: 32px;
    text-align: center;
    margin: 50px 0;
}

.jobs-list{
    width: 100%;
}
.job-card{
    width: 100%;
}

.job-card > h2{
    font-size: 24px;
}

.job-details-container{
    display: flex;
    gap: 40px;
}

.job-details-container > p{
    width: fit-content;
    color: black;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid lightgray;
}

.jobs-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.jobs-footer > a{
    padding: 15px 40px;
    background-color: #ff882c;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(139, 84, 43, 0.2);
}

.jobs-footer > a:hover {
    background-color: #cc7e46;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(139, 84, 43, 0.3);
}

.jobs-footer > a:active {
    transform: translateY(0);
}

hr{
    margin: 20px 40px;
    border: 1px solid black;
    background-color: #000;
}

.job-description{
    margin: 20px 0;
}


.no-jobs {
    grid-column: 1/-1;
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.error-message {
    background: #ffe6e6;
    color: #d63031;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    text-align: center;
}


@media screen and (max-width: 768px) {
    .career-description{
        flex-direction: column;
    }

    .job-details-container{
        gap: 20px;
    }

    .both-parts{
        width: 100%;
    }
    .first-part{
        font-size: 18px;
        padding-bottom: 30px;
    }
    .jobs-footer{
        justify-content: center;
        flex-direction: column-reverse;
        align-items: center;
        gap: 25px;
    }

    .jobs-footer > a {
        width: 100%;
        text-align: center;
        padding: 15px 0px;
        font-size: 20px;
        order: 1;
    }

    .job-details-container {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .job-details-container > p {
        width: 100%;
        text-align: center;
    }
}

@media print {
    .wrapper {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .job-card {
        break-inside: avoid;
        page-break-inside: avoid;
        border: 1px solid #ccc;
        padding: 1cm;
        margin-bottom: 1cm;
    }
    
    .apply-btn,
    nav,
    footer {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

@media (forced-colors: active) {
    .job-card {
        border: 2px solid CanvasText;
    }
    
    .apply-btn {
        border: 1px solid CanvasText;
    }
}