html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

/*body {
    margin-bottom: 60px;
}*/
body {
    background: linear-gradient(135deg, #ffffff, #e0f7fa);
    font-family: 'Poppins', sans-serif;
}

.container {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* height: 100vh; */
    min-height: 38rem;
    margin-top: 2rem;
}



h1, h2, h3, h4, h5 {
    color: #0056b3;
}

p {
    color: #333333;
    line-height: 1.6;
}

.navbar-nav .nav-link.active {
    border-bottom: 3px solid #ffffff;
    font-weight: 900;
    color: #f8f9fa;
    padding-bottom: 10px;
    transition: border-bottom 0.3s ease-in-out, color 0.3s ease-in-out;
}

.navbar-nav .nav-link {
    transition: transform 0.3s ease-in-out;
}

    .navbar-nav .nav-link:hover {
        transform: scale(1.05);
    }







.drop_box {
    margin: 10px 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 3px dotted #a3a3a3;
    border-radius: 5px;
}

#drop-area {
    border: 2px dashed #007bff;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    background-color: #f8f9fa;
    transition: 0.3s ease;
}

    #drop-area:hover {
        border-color: #28a745;
        background-color: #e9ecef;
    }

    #drop-area p {
        font-size: 16px;
        font-weight: bold;
    }

#loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4); /* More transparent */
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px); /* Softer blur effect */
    font-family: Arial, sans-serif;
    color: #0056b3;
    font-size: 18px;
    font-weight: bold;
}

.spinner {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 5px solid transparent;
    border-top: 5px solid rgba(0, 86, 179, 0.8);
    border-right: 5px solid rgba(0, 123, 255, 0.8);
    animation: spin 1s linear infinite, glow 1.5s ease-in-out infinite alternate;
    margin-bottom: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(0, 86, 179, 0.3);
    }

    100% {
        box-shadow: 0 0 15px rgba(0, 86, 179, 0.6);
    }
}
.loading {
    color: #0056b3;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    position: relative;
    display: inline-block;
    animation: blink 1.5s infinite;
    margin-left:2px
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}

.idxheader {
    background: #eaf2f3;
    padding: 15px;
    font-weight: bold;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

    .idxheader i {
        font-size: 50px;
        color: #F4B400;
    }

.nav-tabs .nav-link {
    color: #333;
}

    .nav-tabs .nav-link.active {
        border-bottom: 2px solid #0056b3;
        color: #0056b3;
        font-weight: 700;
    }
.select2-container {
    width: 100% !important;
}

#idXqualificationModal{
    left:25% !important
}
#idXprofessionalModal {
    left: 25% !important
}