body {
    background-color: #E4E4EE;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #AFCBFF 0%, #E5C6F7 100%);
    position: relative;
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
}

.no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.loading-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    z-index: 9999;
    transition: opacity 0.3s ease-out;
}

.app-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 40px;
    border-radius: 28px;
    background: #fff;
}

.loading-progress {
    width: 120px;
    height: 8px;
    background-color: #D7DEE9;
    border-radius: 8px;
    margin-top: 20px;
    overflow: hidden;
    transform-origin: center;
    -webkit-transform-origin: center;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: #F77C00;
    border-radius: 8px;
    transition: width 0.3s ease-out;
    transform-origin: center;
    -webkit-transform-origin: center;
}

.hidden {
    opacity: 0;
    pointer-events: none;
}

.croppie-container.solvio-cropper .cr-slider-wrap {
    margin-top: 45px;
}

::selection {
    background: transparent;
    /* Remove the default selection background */
    color: inherit;
    /* Ensure the text color remains unchanged */
}