.loader_boss {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* Darker overlay for better focus on the USDT theme */
    background-color: rgba(0, 0, 0, 0.8); 
}

.loader_boss .content {
    /* CHANGE 1: Navy (#444B5B) to Black (#000000) */
    background-color: #000000; 
    /* CHANGE 2: White to USDT Green (#009393) */
    color: #009393; 
    width: 100px;
    text-align: center;
    height: 100px;
    border-radius: 50px;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    padding-top: 17px;
    /* Added subtle border to stand out on black bg */
    border: 1px solid #111; 
}

.loader_boss .content .spinner {
    box-sizing: border-box;
    width: 60px;
    height: 60px;
    padding: 3px;
    overflow: visible;
}

.loader_boss .content .spinner>circle {
    fill: none;
    /* This uses 'currentColor', so it will automatically turn Green 
       because we changed .content color above! */
    stroke: currentColor; 
    cx: 50%;
    cy: 50%;
    r: 50%;
    stroke-width: 2px;
    stroke-linecap: round;
    transform-origin: center;
}

.loader_boss .content .l_text {
    text-align: center;
    font-size: 12px;
    margin-top: -10px;
    /* Adjusted margin to center the text better */
    margin-left: 0px; 
}
