.gradient-custom-2 {
    background: #021D49;
    background: -webkit-linear-gradient(to right, #021D49, #021D49, #021D49, #021D49);
}

@media (min-width: 768px) {
    .gradient-form {
        height: 100vh !important;
    }
}

@media (min-width: 769px) {
    .gradient-custom-2 {
        border-top-right-radius: .3rem;
        border-bottom-right-radius: .3rem;
    }
}

.main-sidebar {
    background-color: #021D49;
}

.navbar-kube,
.navbar-kube ul li a {
    background-color: #021D49;
    color: #c2c7d0 !important;
}

.navbar-kube ul li a.active {
    background-color: #021D49;
    color: #FFF !important;
    font-size: 1.15rem;
    display: block;
}

.navbar-kube ul li a:hover {
    color: #FFF !important;
    font-size: 1.15rem;
    display: block;
    background-color: rgba(255, 255, 255, .1);
    color: #fff;
    border-radius: .25rem;
    padding: .5rem 1rem;
}

.navbar-kube a:focus a:hover {
    background-color: rgba(255, 255, 255, .1);
    color: #fff;
    border-radius: .25rem;
    padding: .5rem 1rem;
}

.card-info .card-header {
    background-color: #3a68b1 !important;
}


.check-personal {
    transform: scale(1.5);
}



.spinner {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.nav-icon {
    width: 20px; /* Standardize icon width */
    text-align: center; /* Center-align icon */
    margin-right: 8px; /* Consistent margin to the right of the icon */
}

.nav-link {
    display: flex;
    align-items: center; /* Ensures vertical center alignment of text and icon */
}