.job-carousel-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 10px; /* space below carousel */
}

.job-carousel-nav .swiper-button-next,
.job-carousel-nav .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: none;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    box-shadow:none;
    border:none;
}

.job-carousel-nav .swiper-button-next{
    position: absolute;
    right: -60px;
}

.job-carousel-nav .swiper-button-prev{
    position: absolute;
    left: -60px;
}

/*.job-carousel-nav .swiper-button-next:hover,
.job-carousel-nav .swiper-button-prev:hover {
    background: rgba(0,0,0,0.8);
}*/

#job-popup{
    top:60px !important;
}

button#close-job-popup {
    position: sticky !important;
    float: right;
}

p.locationtxt{
    font-weight:bold;
    color:#555;
    margin:5px 0;
}

.job-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 -1px 5px rgba(0,0,0,0.08);
    overflow: hidden;
    padding: 0;
    height: auto !important;
}

.job-card-header {
    background: #5049E2;
    padding: 18px 20px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

.job-card-body {
    padding: 20px;
}

.posted-text {
    color: #999;
    font-size: 12px;
    margin-bottom: 10px;
}

.job-short-desc {
    font-size: 14px;
    color: #333;
    line-height: 1.55;
    height: 110px;
    overflow: hidden;
}

.read-more-btn {
    color: #4c48e3;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

.read-more-btn span {
    font-weight: bold;
    margin-left: 4px;
}

.job-card-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.share-btn {
    background: transparent;
    border: 1px solid #4c48e3;
    border-radius: 25px;
    padding: 10px 20px;
    color: #4c48e3;
    cursor: pointer;
    font-size: 14px;
}

.apply-btn {
    background: #4c48e3;
    color: #fff !important;
    border-radius: 25px;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 14px;
}

/* Swiper pagination centering like screenshot */
.job-carousel-nav {
    text-align: center;
    margin-top: 20px;
}

.swiper-button-prev,
.swiper-button-next {
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ccc;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 16px;
    color: #4c48e3;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 5px solid #ddd;
    border-top-color: #4c48e3;
    border-radius: 50%;
    margin: auto;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


@media (max-width: 480px) {
    .job-card-actions {
        flex-direction: column;
    }

    .share-btn,
    .apply-btn {
        width: 100%;
        text-align: center;
    }
    
    .apply-btn{
        margin-top:10px;
    }
}

    
