html, body {
    min-height: 100vh;
    font-family: "Lato", sans-serif !important;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.logo-text {
    font-family: "Lato", sans-serif !important;
    font-weight: 700;
}

a {
    color: unset;
    text-decoration: unset;
}

.nowrap {
    text-wrap: nowrap;
}

.placeholder.placeholder-wave {
    width: 50%;
    min-height: 1.5rem;
}

input.highlight, input.highlight:focus,
textarea.highlight, textarea.highlight:focus,
select.highlight, select.highlight:focus {
    border: 3px solid red !important;
    box-shadow: 0 0 5px red !important;
}

.btn-ai-generator {
    border: 0;
    border-radius: var(--button-radius);
    width: 100%;
    color: white;
    background-color: #6303d3;
    padding: 5px 10px;
    font-weight: bold;
    font-size: var(--button-font-size);
    box-shadow: 3px 3px 3px var(--color-darker);
    transition: .3s;
}

.btn-ai-generator:hover {
    background-color: #4d02a5;
    box-shadow: 5px 5px 5px var(--color-darker);
}

.form-control.no-border, .form-control.no-border:focus-visible, .form-control.no-border:focus {
    border: 0;
    box-shadow: unset;
    padding: 0;
}

.form-group {
    display: inline-block;
    margin-bottom: 1rem;

    label {
        display: block;
    }
}

.hide {
    display: none !important;
}

.page-item {
    border: 0;
    --bs-pagination-border-width: 0;
}

td a {
    margin: 0 .4rem;
}

i.red {
    color: red;
}

i.green {
    color: green;
}

.permission-disabled {
    display: none !important;
}

@keyframes inOut {
    0% {
        scale: 1;
    }
    50% {
        scale: .9;
    }
    100% {
        scale: 1;
    }
}

#modal-error {
    .modal-content {
        text-align: center;

        .message {
            font-weight: bold;
            font-size: 30px;
        }

        .report {
            margin-top: 1rem;
            font-size: 16px;
        }

        .bug {
            font-size: 100px;
            animation: inOut 3s ease-in-out infinite;
        }

        button {
            background-color: white;
            border: 0;
            font-weight: bold;
            margin-bottom: 20px;
        }
    }
}

#modal-error.danger .modal-content, #modal-error.danger button {
    background-color: #a70000;
    color: white;
}

#modal-error.warning .modal-content, #modal-error.warning button {
    background-color: yellow;
    color: black;
}

.modal.fade, body {
    padding-right: 0 !important;
}

@media (max-width: 768px) {
    .hide-sm {
        display: none !important;
    }
}
