/* ===== RESET ===== */
*{ 
    margin:0;
    padding:0;
    box-sizing:border-box;
}
    
/* ===== CORES GLOBAIS ===== */
:root{
    --bg-main:#0f1120;
    --bg-card:#1a1d33;
    --bg-hover:#252846;
    --menu:#121428;
    --border:#35395c;
    --text:#ffffff;
    --text-light:#bfc6ff;
    --primary:#00e5ff;
    --success:#00ffb3;
}

/* ===== BODY ===== */
body{
    font-family: Arial;
    background:#0f1120;
    color:white;
     margin-top:2px;
}

/* ===== MENU ===== */
.sidebar{
  width:350px;
  z-index:1000;
    background:var(--menu);
    padding:5px;
    border-right:1px solid var(--border);
    height:100vh;
    padding-top:20px;
    position:fixed;
    left:0;
    top:0;
  
}

.conteudo{
    margin-left:370px;
    padding:20px;
      max-width: 800px;
}
.logo{
    
        
    padding-left:5px;
    font-size:28px;
    font-weight:bold;
    color:var(--primary);
    margin-bottom:30px;

}

/* ===== BOTÕES MENU ===== */
button{
   width:320px;
    padding-left:10px;
    padding-right:10px;
    justify-content:center;
    margin-top:2px;
    height: 40px;
    border:none;
    color:white;
    font-size:18px;
    cursor:pointer;
    color:var(--text-light);
    background:var(--bg-card);
    border:1px solid var(--border);
    border-radius:8px;
    padding:20px;
    margin-bottom:4px;
    color:var(--primary);
    font-weight:bold;
    align-items:center;
     display: flex;
}

button:hover{
    background:#00e5ff;
    color:black;
}

/* ===== CONTEUDO ===== */
.content{
    flex:1;
    padding:30px;
}

.conteudo{
   flex:1;
    padding:30px;
}

/* ===== CARDS ===== */
.card{
    background:var(--bg-card);
    border:1px solid var(--border);
    border-radius:8px;
    padding:20px;
    margin-bottom:10px;
}

.card-title{
    color:var(--text-light);
    margin-bottom:10px;
}

.card-value{
    font-size:35px;
    color:var(--primary);
    font-weight:bold;
}


/* ===== TABELAS ===== */
table{
    width:100%;
    border-collapse:collapse;
    background:var(--bg-card);
    border-radius:8px;
    overflow:hidden;
}

table th{
    background:#15182b;
    color:var(--primary);
    padding:15px;
    text-align:left;
}

table td{
    padding:15px;
    border-top:1px solid var(--border);
    color:var(--text);
}

table tr:hover{
    background:var(--bg-hover);
}

table td a{
    text-decoration:none;
    margin-left:8px;
    font-size:14px;
}

table td a:hover{
    opacity:0.8;
}

/* ===== INPUTS ===== */
input{
   width:320px;
    padding-left:10px;
    padding-right:10px;
    justify-content:flex-start;
    margin-top:2px;
    height: 40px;
    border:none;
    color:white;
    font-size:12px;
    cursor:pointer;
    color:var(--text-light);
    background:var(--bg-card);
    border:1px solid var(--border);
    border-radius:8px;
    padding:20px;
    margin-bottom:4px;
    color:var(--primary);
    font-weight:bold;
    align-items:center;
    
}


/* ===== TITULOS ===== */
h1,h2,h3{
    margin-bottom:10px;
}

/* ===== RESPONSIVO ===== */
@media(max-width:768px){

    .container{
        flex-direction:column;
    }

}


tabels {
    main:#0f1120;
    card:#1a1d33;
    hover:#252846;
    menu:#121428;
    border:#35395c;
    text:#ffffff;
    text-light:#bfc6ff;
    primary:#00e5ff;
    success:#00ffb3;
 filter: brightness(1.2)
}

.ini{
    width:350px;
    margin-left:auto;
    margin-right:auto;
    margin-top:30px;
    text-align:center;
}

a{
    text-decoration: none;
     color:var(--primary);
     text-align: center;
} E
input,
select{

    width:320px;
    height:40px;
    padding:0 10px;
    background:var(--bg-card);
    border:1px solid var(--border);
    border-radius:8px;
    color:var(--text-light)
    font-size:14px;
    font-weight:bold;
    appearance:none;
}
option{
    background:var(--bg-card);
     color: var(--text-light);
}

