html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

a {
    text-decoration: underline;
    cursor: pointer
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app {
    text-align: center;
    width: 100%;
    max-width: 400px; /* Adjust based on your layout */
}


.custom-loader {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #258cb1;
    -webkit-mask: radial-gradient(circle closest-side at 50% 40%,#0000 94%, #000);
    transform-origin: 50% 40%;
    animation: s5 1s infinite linear;
    margin: 20px auto;
}

@keyframes s5 {
    100% {
        transform: rotate(1turn)
    }
}

.modal-content {
    max-width: 100%;
    overflow: hidden;
}

/* Styling for the text container */
#textDesc {
    word-wrap: break-word; /* Break long words */
    overflow-wrap: break-word; /* Support for long words */
}