@tailwind base;
@tailwind components;
@tailwind utilities;

/* Variáveis */
:root {
    --menuBarColor: #1F2937;
    --black: #171717;
    --orange: #EC9A21;
    --red: #E03B28;
}
/***************/


.cb-orange {
    color: var(--orange) !important;
}

.hover-orange:hover {
    color: var(--orange) !important;
}

/* Login */
.login-pane {
    background-color: var(--menuBarColor);
}

.vertical-center {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

#forgot-password {
    text-decoration: none;
    font-size: 15px;
    color: var(--orange);
}

#forgot-password:hover {
    text-decoration: underline;
}

#login-submit {
    background-color: var(--orange);
}

#login-submit:active, #login-submit:focus, #login-submit:focus+.btn {
    box-shadow: none !important;
}

.error-text {
    font-size: smaller !important;
    color: var(--red);
}
/******************/

/* Menu principal */
.menu-option:hover {
    color: var(--orange)!important;
}
/******************/


#tecnicos-list {
    list-style-position: inside !important;
    padding: 0 !important;
    list-style-type: none !important;
}

.tecnico-item-list {
    list-style-type: initial !important;
    text-indent: 0px !important;
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

/*body {
  margin-bottom: 60px;
}*/

#content {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#main {
    flex: 1;
}

footer {
    flex-shrink: 0;
    padding-top: 1vh;
}

.myTr:hover {
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.myTr:active {
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.myTr label:hover {
    cursor: pointer;
}

/* Rodapé */
footer {
    position: relative !important;
    left: 0 !important;
    bottom: 0 !important;
    background-color: var(--menuBarColor);
}
/***************/

/***********CSS DO DROPDOWN**********/