﻿
@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 200px;
}


.image-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%);
    border: 4px solid #ddd;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 2;
}

.lazy-image {
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

    .lazy-image.loaded {
        opacity: 1;
    }


.zoomable {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    border-radius: 4px;
    border: 2px solid #f0f0f0;
    color: white;
    box-shadow: 5px 10px 8px #888888;
    cursor: pointer;    
    transform: scale(1);
    background-color: #fff;
}

    .zoomable:hover {
        transform: scale(1.08);
        border-color: #0d6efd;
        box-shadow: 0 12px 30px rgba(13, 110, 253, 0.35);
        z-index: 10;
        position: relative;        
    }
    

.medium-zoom-overlay {
    z-index: 1055 !important;
    background-color: rgba(0, 0, 0, 0.6) !important;
}

.medium-zoom-image--opened {
    z-index: 1060 !important;
    position: relative;
    border-radius: 8px;
}


.dropdown {
    z-index: 10;
}


.job-card {
    margin-bottom: 20px;
}

    .job-card .card-body {
        padding: 20px;
    }

.apply-btn {
    margin-top: 15px;
    font-size: 16px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
}

.remove-btn {
    margin-top: 15px;
    font-size: 16px;
    background-color: red;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
}

.apply-btn:hover {
    background-color: #0056b3;
}

.remove-btn:hover {
    background-color: darkred;
}

.message-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    text-align: center;
    display: none;
}

.message-content {
    font-size: 18px;
    color: #333;
    font-family: Arial, sans-serif;
}
