﻿
.extrafocus {
    box-sizing: border-box;
    /*color:#0F0;
            border-width: 6px;
            border-style: solid;
            border-color: white;*/
    /*  color: #FF0;*/
    text-decoration: none; /* Removes the default underline */
    font-weight: bold; /* Makes the link text bold */
    */
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff; /* Or your preferred background color */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it's on top of other content */
}

/* Example spinner styling */
.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}