* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
input {
  /* Hide spinners in WebKit browsers (Chrome, Safari, Edge) */
  -webkit-appearance: none;
  -moz-appearance: textfield;  /* Firefox */
  appearance: none;
}

/* Explicitly hide the spinner buttons */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  display: none;
}

/* Hide spinners in Firefox */
input::-moz-number-spin-up,
input::-moz-number-spin-down {
  display: none;
}

.container {
    max-width: 100%;
    min-height: 100vh;
    width: 100%;
}

/* Main Content and Page Styling */
#app {
    min-height: 100%;
    transition: opacity 0.5s ease-in-out;
        padding-bottom: 5em;
}


/* Loader Styling */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

 /* Loader */
        .loader {
            display: flex;
            gap: 0.6em;
            align-items: center;
            justify-content: center;
            padding: 2em;
        }
        .loader-dot {
            width: 0.8em;
            height: 0.8em;
            background: #648fbf;
            border-radius: 50%;
            animation: pulse 1.4s ease-in-out infinite both;
        }
        .loader-dot:nth-child(1) { animation-delay: -0.32s; }
        .loader-dot:nth-child(2) { animation-delay: -0.16s; }
        .loader-dot:nth-child(3) { animation-delay: 0s; }
        @keyframes pulse {
            0%, 80%, 100% {
                transform: scale(0.6);
                opacity: 0.5;
            }
            40% {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Loading Layer */
        .loading-layer {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
                        backdrop-filter: blur(10px);

        }
        .loading-layer.show {
            display: flex;
        }

        