body fuse-splash-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #111827;
    color: #F9FAFB;
    z-index: 999999;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
}


/**/
body:not(.fuse-splash-screen-hidden) {
    overflow: hidden;
}

body.fuse-splash-screen-hidden fuse-splash-screen {
    visibility: hidden;
    opacity: 0;
}
.spinner-container {
    position: relative;
    width: 150px; /* Match the size of your logo or set as needed */
    height: 150px; /* Match the size of your logo or set as needed */
    margin: 0 auto; /* Center the container */
}

.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2; /* Ensure logo is above borders */
    width: 100px; /* Adjust size as needed */
    height: auto;
}

.borderee {
    padding: 50px;
    position: absolute;
    border: 5px solid; /* Changed from 10px to 5px */
    border-radius: 15px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.border1l {
    border: 5px solid #f8f8f8 !important; /* Changed from 10px to 5px, also simplified color declaration */
     animation: rotateBorder 3s linear infinite;
}

.border2l {
    border: 5px solid #a8d5ff !important; /* Changed from 10px to 5px */
     animation: rotateBorder 3s linear infinite reverse;
}

@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
