/* ======================================================================
   FONTES E ÍCONES
   ====================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

/* ======================================================================
   VARIÁVEIS GLOBAIS
   ====================================================================== */
:root {
    --cor-primaria: rgb(60, 105, 163);
    --cor-secundaria: rgb(16, 69, 138);
    --cor-hover: rgb(37, 78, 131);
    --cor-clara: #f7f7f7;
    --cor-borda: #ddd;
    --cor-texto: #333;
    --cor-tabela-header: #ddd;
    --fonte-principal: "Poppins", sans-serif;
}

/* ======================================================================
   RESET E CONFIGURAÇÕES GERAIS
   ====================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: var(--fonte-principal);
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-texto);
    background-color: #fff;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--fonte-principal);
}

/* ======================================================================
   ASIDE (MENU LATERAL)
   ====================================================================== */
aside {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    background-color: var(--cor-primaria);
    width: 200px;
    height: 100vh;
}

.logoSys {
    width: 200px;
    height: 150px;
    background-color: #000;
    padding: 10px;
}

.logoSys img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

/* ======================================================================
   CONTEÚDO PRINCIPAL
   ====================================================================== */
.containerConteudo {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}

header {
    background-color: var(--cor-secundaria);
    width: 100%;
}

main {
    width: 100%;
    height: 100%;
    /* border: 1px solid blue; */
    background-color: #eeeeee;
}

/* ======================================================================
   FORMULÁRIOS
   ====================================================================== */
.formularioCadastroCliente {
    background-color: var(--cor-clara);
    margin-top: 5px;
    border-radius: 10px;
    padding: 0 10px 10px 10px;
}

input,
select {
    border: 1px solid var(--cor-borda);
    border-radius: 5px;
    height: 30px;
    padding-left: 5px;
    text-transform: uppercase;
    font-family: var(--fonte-principal);
    background-color: #fff;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--cor-primaria);
}

.title {
    font-size: 13px;
    font-weight: 600;
}

.red-back {
    background-color: #f1d5d5;
}

input:disabled{
    color: #000;
    background-color: #ddd;
}

/* ======================================================================
   LISTAGEM DE CLIENTES
   ====================================================================== */
.botaoListagemCliente {
    width: 100%;
    height: 40px;
    font-size: 13px;
    font-weight: 600;
    padding-left: 5px;
    text-overflow: ellipsis;
    overflow: hidden;
    text-transform: uppercase;
    text-align: left;
    background-color: transparent;
    color: #fff;
    border-bottom: 1px solid #dddddd73;
    transition: background-color 0.2s;
}

.botaoListagemCliente:hover {
    background-color: var(--cor-hover);
}

.containerListagemClientes {
    overflow-y: auto;
    width: 100%;
    height: 100%;
    scrollbar-width: none; /* Firefox */
}

.containerListagemClientes::-webkit-scrollbar {
    display: none; /* Chrome */
}

.identificacaoClienteSolicitado {
    background-color: var(--cor-primaria);
    color: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.limite-linha {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;

    width: 350px;
    height: 25px;

    background-color: var(--cor-secundaria);
    color: #fff;

    font-size: 13px;
    text-transform: uppercase;

    display: flex;
    align-items: center;

    padding-left: 5px;
}

/* ======================================================================
   LISTAGEM DE SISTEMAS DOS CLIENTES
   ====================================================================== */
.containerListagemSistemasClientes {
    overflow-y: auto;
    /* width: 100%; */
    height: 65vh;
    max-height: 77vh;
    scrollbar-width: none; /* Firefox */
}

.containerListagemSistemasClientes::-webkit-scrollbar {
    display: none; /* Chrome */
}

.listagemDeSistemasCliente {
    display: flex;
    align-items: center;
    width: 100%;
    height: 30px;
}

.listagemDeSistemasCliente.cabecalho {
    background-color: var(--cor-tabela-header);
}

.listagemDeSistemasCliente span,
.botaoListagemTresPontinhos {
    border-right: 1px solid #b9b9b9;
    border-bottom: 1px solid #b9b9b9;
    height: 30px;
    font-size: 13px;
    font-weight: 600;
    padding-left: 5px;
    display: flex;
    align-items: center;
}

#repeticaoListaSistema{
    width: 1030px;
}

.listagemDeSistemasCliente.linha {
    position: relative;
}

.botaoListagemTresPontinhos{
    background-color: #ddd;
    font-size: 15px;
    justify-content: center;
}

.listagemDeSistemasCliente.linha:hover {
    background-color: rgba(60, 105, 163, 0.274);
}

.modalBotoesProduto{
    z-index: 999;
    position: absolute;

    top: 30px;
    right: 0px;

    padding: 10px 0;

    width: 150px;
    
    box-shadow: 3px 3px 10px 0 #00000033;

    background-color: #dadada;

    border-radius: 10px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.botaoProdutoListagem{
    width: 100%;
    height: 30px;

    text-align: left;
    font-weight: 500;

    padding-left: 5px;
}

.botaoProdutoListagem:hover{
    background-color: #f3f3f3ad;
}