@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    padding: 0;
    margin: 0;
}

:root {
    --blue-dark: #03045e;
    --blue-light: #0077b6;
    --blue-clean: #caf0f8;
}

body {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

header {
    /* display: flex; */
    width: 100%;
    background: var(--blue-dark);
}

/**********************************************************************
MENU
**********************************************************************/
/* Estilização do menu */
.nav-menu {
    background-color: var(--blue-dark);
    font-family: Arial, sans-serif;
}

.nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu>ul>li {
    display: inline-block;
    position: relative;
}

.nav-menu ul li a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.nav-menu ul li a:hover {
    background-color: var(--blue-light);
}

/* Estilização do dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: #333 !important;
    padding: 12px 16px;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

/* Mostrar dropdown ao passar o mouse */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Estilo para itens ativos */
.active {
    background-color: var(--blue-dark);
}

/* Logo */
.logo {
    float: left;
    padding: 1px 20px;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.logo>img {
    /* background-color: #FFF; */
    height: 50px;
}


.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 80vw;
}

.contents {
    width: 99vw;
    /* display: flex;
    flex-direction: column; */
    padding: 10px;
}

.cols {
    display: flex;
    align-items: space-between;
    width: 100%;
}

/* INICIO CAMPO INPUT FILE */
.titulo {
    color: var(--blue-dark);
    width: 100%;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    margin: 10px;
}


form {
    display: flex;
    flex-wrap: wrap;
}

.input_container {
    display: flex;
    border: 1px solid var(--blue-dark);
    padding: 0px;
}

input[type=file]::file-selector-button {
    background-color: var(--blue-light);
    color: #FFF;
    font-weight: bold;
    border: 0px;
    border-right: 1px solid var(--blue-dark);
    padding: 15px;
    margin-right: 20px;
    cursor: pointer;
    transition: .5s;
}

input[type=file]::file-selector-button:hover {
    background-color: transparent;
    color: var(--blue-light);
    border: 0px;
    border-right: 1px solid var(--blue-dark);
}

/* FINAL CAMPO INPUT FILE */


.form-group {
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
    margin: 5px 10px;
    width: 80%;
    /* background: green; */
}

.label-control {
    font-weight: bold;
    font-size: .9rem;
    width: 100%;
    text-transform: capitalize;
    /* background: red; */
}

.input-control,
.select-control {
    font-size: 0.8rem;
    border: 2px solid #000;
    border-radius: 10px;
    box-shadow: 2px 2px #999;
    width: 100%;
    padding: 5px 10px;
}

.input-control:hover,
.select-control:hover {
    box-shadow: 2px 2px var(--blue-light);
    border: 2px solid var(--blue-light);
}

.input-control:focus {
    box-shadow: 5px 5px var(--blue-light);
    border: 1px solid var(--blue-light);
}



/* .btn,
.btn2 {
    background-color: var(--blue-light);
    color: #FFF;
    padding: 10px 25px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    margin: 5px 0;
    border: 1px solid var(--blue-light);
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background-color: transparent;
    color: var(--blue-light);
}

.btn2:hover {
    background-color: var(--blue-clean);
    color: var(--blue-dark);
} */


/* table,
td,
th {
    color: #000;
    font: 12px 'Roboto', sans-serif;
    border-collapse: collapse;
    padding: 1px 5px;

}

tr:hover>td {
    background: var(--blue-light) !important;
    color: var(--blue-clean);
}

th {
    background-color: var(--blue-dark);
    color: var(--blue-clean);
    padding: 10px;
}

td {
    color: var(--blue-dark);
}


tr:nth-child(2n+2) {
    background: var(--blue-clean);
}

.titleTable {
    position: sticky;
    top: 0px;
} 
*/


 #teste{
    scrollbar-color: var(--blue-light) var(--blue-clean) ; /* Cor do thumb e do track */
    scrollbar-width: auto; /* Opcional: define a largura da barra de rolagem */
}
 


.rowColor>td {
    background-color: #6a040f !important;
    color: #FFF;
    font-weight: bold;
}

.rowColor1>td {
    background: #d00000 !important;
    color: #FFF;
    font-weight: bold;
}

.rowColor2>td {
    background: #e85d04 !important;
    color: #FFF;
    font-weight: bold;
}

.rowColor3>td {
    background: #5bc0be !important;
    color: #FFF;
    font-weight: bold;
}

.rowColor4>td {
    background: #ffc300 !important;
    color: #FFF;
    font-weight: bold;
}
.rowColor5>td {
    background: #c8b6ff !important;
    color: #FFF;
    font-weight: bold;
}
.rowColor6>td {
    background: #d5bdaf !important;
    color: #FFF;
    font-weight: bold;
}
.rowColor7>td {
    background: #d00999 !important;
    color: #FFF;
    font-weight: bold;
}


/* erro para jquery validated */
.error {
    color: #F00;
    font-weight: bold;
    padding: 5px;
    margin: 0;
}

/* .alert {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.alert-success,
.alert-error {
    background-color: #06d6a0;
    color: #FFF;
    padding: 5px;
    border-radius: 50px;
    font-weight: bold;
    margin: 5px 0;
}

.alert-error {
    background-color: #ef476f;
}

.alert-title,
.alert-text {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFF;
    padding: 5px;
    border-radius: 50px;
    width: 100%;
    text-align: center;
}

.alert-text {
    font-size: 1.3rem;
} */

.loading {
    width: 100px;
}



/*******************************************************
*****************   GUIAS   ***************************
*******************************************************/

/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid var(--blue-light);
    background-color: var(--blue-light);
}

/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: var(--blue-dark);
    color: var(--blue-clean);
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: var(--blue-clean);
}

.tab button.active:hover {
    color: var(--blue-dark);
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid var(--blue-light);
    border-top: none;
}


/**************************************************************
    *******************   BOOTSTRAP   ***************************
    **************************************************************/
.nav-link {
    font-weight: bold;
}
.nav-link:hover {
    color: #f8f9fa !important;
    transform: scale(1.3);
    transition: 0.3s;
}

.dropdown-item:hover {
    background-color: #0d6efd;
}