/* ===== app.css ===== */

body {
    background-image: url('/img/fundo_radar.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #0f1b23;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
}

/* Olho no input */
.input-icon-eye {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

.input-icon-eye:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.input-icon-eye:disabled,
.input-icon-eye[disabled] {
    opacity: 0.5;
}

.input-icon-eye:disabled,
.input-icon-eye[disabled] {
    opacity: 0.5;
}

.input-icon-eye:disabled:hover,
.input-icon-eye[disabled]:hover,
.input-icon-eye:disabled:hover i,
.input-icon-eye[disabled]:hover i {
    color: inherit;
}

.oculto {
    display: none;
}

/* Input */
.form-control {
    border-radius: 50rem;
}

/* Mensagem de erro */
/* .error-message {
    font-size: 0.85rem;
    min-height: 1.5rem;
    padding-top: 4px;
} */

.email-options {
    border: 1px solid var(--border-color);
    padding: .375rem .75rem;
    border-radius: 1rem;
    background-color: var(--background-color);
    color: var(--text-color);
}

/* Balão do Caps Lock */
.caps-lock-alert {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 0.8rem;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    pointer-events: none;
    z-index: 10;
}

.text-justify {
    text-align: justify;
}

/* Botões */
.btn {
    border-radius: 50rem;
}

.btn-link {
    text-decoration: none !important;
}

.btn-link:hover {
    text-decoration: underline !important;
}

/* Links */
a {
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Header do tema (logo + slogan) */
.theme-header img {
    max-height: 48px;
}
.theme-header h6 {
    margin-top: 1rem;
}

/* Controle de logo por tema */
.logo-tema-dark,
.logo-tema-light {
    display: none;
}

.header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.input-disabled-tema {
    cursor: not-allowed;
}

.fonte-extra-pequena {
    font-size: 0.65rem; 
}

.texto-naoautorizada-tema {
    color: var(--danger-color);
}

.text-success-light {
    color: #3BF063; /* Verde mais claro */
}

.box-input-tema {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem;
    /* margin: 1.5rem 0; */
    width: 100%;
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    border-radius: 0; /* ou remova se quiser quinas retas */
    box-shadow: none; /* remova sombra se estiver gerando efeito de recorte */
    justify-content: space-between;
}

.box-input-tema > div {
    flex: 1 1 200px; /* ocupa o espaço disponível, com mínimo de 200px */
    min-width: 180px;
}

.box-input-tema label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: bold;
    color: var(--bs-body-color);
}

.box-input-tema input,
.box-input-tema select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--bs-border-color, #ced4da);
    border-radius: 1rem;
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
}

.banner-area img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

#sugestaoemails {
    max-height: 200px;         /* ou height: 200px; */
    overflow-y: auto;          /* ativa scroll vertical se necessário */
    border: 1px solid #ccc;    /* opcional, apenas visual */
    padding: 0.5rem;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    z-index: 1050; 
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

/* .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    z-index: 99999 !important;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
} */

.whatsapp-float:hover {
    transform: scale(1.1);
} 




