:root {
    --cor-botao: royalblue;
    --cor-botao-hover: rgb(42, 80, 193);
}

body {
    margin: 0px;
    padding: 0px;
    font-family: 'Roboto', sans-serif;    
}

header {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    background-color: black;
}

section {
    display: flex; 
    justify-content: center;
}

.back {
    background-color: rgb(241, 241, 241);
}

.newSMC {
    height: 40px;
    width: 100px;
    border-radius: 5px;
    border: none;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 1px 3px 10px rgb(180, 180, 180);
    color: white;
    background-color: var(--cor-botao);
}

.newSMC:hover,
.user:hover {
    background-color: var(--cor-botao-hover);
    cursor: pointer;
}

.menu {
    width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background-color: rgb(235, 235, 235);
    margin-top: 30px;
}

.user {
    width: 90px;
    height: 30px;
    background-color: var(--cor-botao);
    margin: auto 0;
    border-radius: 5px;
}

.user a {
    text-decoration: none;
    width: 100%;
    height: 100%;
    color: white;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* table-wrapper é uma classe na div para fazer o scroll horizontal */                        
.table-wrapper {
    max-width: 900px;
    overflow-x: scroll;
}

.card {
    box-shadow: 0 0 10px rgb(180, 180, 180);
    border-radius: 10px;
    background-color: #fff;
    margin: 30px;
}

.tab_dados {
    margin: 15px;
    width: 1500px;
    border-collapse: collapse;
    font-size: 14px;
}

.secaoTabela {
    margin-bottom: 50px;
    background-color: rgb(241, 241, 241);
}

tr {
    text-align: center;
}

td {
    border-bottom: 1px solid #868e96;
    min-width: 50px;
    max-width: 300px; 
    padding: 3px;
}

.text-muted {
    color: #868e96;
}

.melhoria {
    font-weight: bold;
}

.resumo {
    /* Para colocar reticencias quando o texto for muito grande */
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis; 
    display: flex;
    justify-content: center;
}

details:hover {
    cursor: pointer;
}

.esconder {
    display: none;
}

.container {
    /* background-color: black; */
    display: flex;
    justify-content: center;
    width: 900px;
}

.logo {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    color: white;
    background-color: white;
}

.titulo {
    width: 800px;
    /* background-color: aqua; */
    align-items: center;
    justify-content: center;
    display: flex;
    flex: 4;
    color: white;
    font-weight: bold;
}

.formulario {
    margin: 40px 10px;
    padding: 20px;
    width: 900px;
    height: auto;
    display: flex;
    box-shadow: 0 0 10px rgb(180, 180, 180);
    background-color: white;
    border-radius: 10px;
}

.form-login {
    margin: 300px auto;
    width: 400px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;    
    box-shadow: 0 0 10px rgb(180, 180, 180);
    background-color: white;
    border-radius: 10px;
}

.form-login input[type=text] {
    margin-bottom: 10px;
}

.form-login input[type=password] {
    margin-bottom: 10px;    
}

.form-login input[type=submit] {
    margin-top: 20px;    
}

.form-login h3 {
    text-align: center;
}

.userError {
    font-size: 12px;
    color: rgb(218, 15, 15);
}

label {
    margin-top: 10px;
}

.flex_space_between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 900px;
}

.margin_radio {
    margin-top: 10px;
}

.flex_end {
    display: flex;
    justify-content: flex-end;
}

.column {
    display: flex;
    flex-direction: column;
}

.center {
    align-items: center;
}

textarea {
    resize: none;
}