@charset "UTF-8";

/* ==========================================================================
   ENNER Group B2B Platform Custom Override Stylesheet
   ========================================================================== */

/* Enable continuous fluid smooth scrolling across standard container anchoring actions */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Customized global focused visual layout adjustments */
input:focus, 
textarea:focus {
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

/* Modernized Scrollbar Layout Engine for Desktop Browsers */
@media (min-width: 1024px) {
    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #020617; /* Matches slate-950 background */
    }
    ::-webkit-scrollbar-thumb {
        background: #334155; /* Matches slate-700 colors */
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #059669; /* Accent brand emerald highlights */
    }
}

/* Protect viewports against sudden long string container breakages */
.break-words-custom {
    word-break: break-word;
    overflow-wrap: break-word;
}