body {
    background: #141610; /* Background color */
}

/* Loader container: full screen, centered, and on top of everything */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #141610; /* Background color */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensures the loader is above all other content */
}

/* Styling for the spinner */
.spinner {
    width: 60px;
    height: 60px;
    border: 8px solid #07493f;        /* Gray ring */
    border-top: 8px solid #1a9b2f;    /* Colored ring */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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


/* Main application, initially hidden */
#ComposeTarget {
    display: none;
}