/* ------------------------------
   Fundo geral do admin
--------------------------------*/
body {
    background-color: #323237;
    color: #000000;
}

/* Navbar e sidebar */
.navbar, .sidebar {
    background-color: #323237 !important;
}

/* Links do menu e topo */
.navbar a, 
.navbar a:hover,
.navbar a:focus,
.sidebar a,
.sidebar a:hover,
.sidebar a:focus,
.jazzmin-topnav a,
.jazzmin-topnav a:hover,
.jazzmin-topnav a:focus {
    color: #ffffff !important;
}

/* Cards do admin */
.card {
    background-color: #323237; /* escuro para uniformidade */
    color: #ffffff;
    border: 1px solid #ff7e00;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Botões padrão */
.btn, .button {
    background-color: #ff7e00;
    background-image: linear-gradient(90deg, #ff7e00, #f84f07);
    color: #fff;
    border: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn:hover, .button:hover {
    opacity: 0.9;
}

/* ------------------------------
   Tela de login
--------------------------------*/
.login {
    background-color: #1c1c1e !important;
}

.login input {
    background-color: #1c1c1e !important;
    color: #ffffff !important;
    border: 1px solid #444;
}

.login input::placeholder {
    color: #bbb !important;
}

.login input[type="submit"], 
.btn-request {
    background: linear-gradient(90deg, #ff7e00, #f84f07);
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.login input[type="submit"]:hover,
.btn-request:hover {
    opacity: 0.9;
}

/* Inputs de filtro e busca do admin */
input[type="text"], input[type="search"], select {
    background-color: #ffffff !important;
    color: #000000 !important;
    border: 1px solid #444;
}

/* Placeholder dos filtros */
input[type="text"]::placeholder,
input[type="search"]::placeholder {
    color: #bbb !important;
}

/* ------------------------------
   Cards personalizados do admin
--------------------------------*/
.card, 
.dashboard-card {
    background-color: #e1e1e3; /* escuro para uniformidade */
    color: #535050;
    border: 1px solid #ff7e00;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);/* sombra suave */    
    padding: 1rem;                         /* espaçamento interno */
}

/* Títulos dentro do card */
.card h2, 
.card h3, 
.dashboard-card h2, 
.dashboard-card h3 {
    color: #969696 !important;
}

/* Links dentro do card */
.card a, 
.dashboard-card a {
    color: #070707 !important;
    text-decoration: underline;
}

.card a:hover, 
.dashboard-card a:hover {
    color: #ff7e00 !important; /* destaque no hover */
}

/* ------------------------------
   Tabelas do admin
--------------------------------*/
.table, 
table {
    background-color: #e3e3e3 !important; /* fundo branco */
    color: #000000 !important;           /* texto preto */
}

.table th, 
.table td, 
table th,
table td {
    border: 1px solid #ccc !important;   /* borda sutil */
    color: #000000 !important;           /* texto preto */
}

.table thead th {
    background-color: #f84f07 !important; /* cabeçalho um pouco mais claro */
    color: #ffffff !important;
}

.table tbody tr:hover {
    background-color: #f84f07  !important; /* hover suave */
}