body {
    color: #52595d;
}
input {
    color: #52595d;
}
textarea {
    width: 100%;
    border: 2px solid #ccc;
    border-radius: 10px;
}
.color_primary{
    color: #41c797
}
.button_true {
    color: black;
    background-color: #41c797;
}
.button_outline_true {
    color: #41c797;
    border: 1px solid #41c797;
}
.button_true:hover {
    color: #41c797;
    border: 1px solid #41c797;
}
.button_outline_true:hover {
    color: black;
    background-color: #41c797;
}
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    z-index: 9999;
}

#loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader {
    width: fit-content;
    font-weight: bold;
    font-family: monospace;
    font-size: 30px;
    background: radial-gradient(circle closest-side,#ffffff 94%,#ffffff00) right/calc(200% - 1em) 100%;
    animation: l24 1s infinite alternate linear;
}

.loader::before {
    content: "Loading...";
    line-height: 1em;
    color: #fffefe00;
    background: inherit;
    background-image: radial-gradient(circle closest-side,#000000 94%,#ffffff);
    -webkit-background-clip: text;
    background-clip: text;
}
