﻿/* ==================================
   Spinner Styling
===================================== */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    /*backdrop-filter: blur(2px);*/
}

    .loading-overlay p {
        color: #d0d0d0;
        font-size: 14px;
        margin-top: 10px;
        position: relative;
        top: 50px;
    }

    .loading-overlay.active {
        display: flex;
    }

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: fixed;
}
.spinnerContent {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.jobSpinnerContent {
    position: absolute;
    top: 200px;
}

@media (max-width: 769px) {
    .jobSpinnerContent {
        top: 0;
        left: 40%;
    }
}
