
.dashboard .card {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.dashboard .card:hover {
    transform: translateY(-5px);
}

.dashboard .card-header {
    border-radius: 10px 10px 0 0 !important;
    font-weight: 600;
}

.dashboard .display-5 {
    font-weight: 700;
}

.list-group-item {
    border-left: none;
    border-right: none;
}

.list-group-item:first-child {
    border-top: none;
}

.list-group-item:last-child {
    border-bottom: none;
}

/* Codigo pagina login.php inicio */

.login {
    background-color: #f8f9fa;
    display: flex;
    min-height: 100vh;
    align-items: center;
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
        url('caminho/para/sua/textura-opcional.jpg');
    background-size: cover;
}

.login-container {
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.logo {
    max-width: 300px;
    max-height: 150px;
    margin-bottom: 1rem;
}

.login-card {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: none;
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
}

.btn-login {
    padding: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-text {
    text-align: center;
    margin-top: 2rem;
    color: #6c757d;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .logo {
        width: 60%;
        /* Um pouco menor em mobile */
    }
}

/* Codigo pagina Index.ph inicio */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --light-bg: #f8f9fa;
}

body {
    background-color: var(--light-bg);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.header {
    background: linear-gradient(135deg, var(--primary-color), #0b5ed7);
    color: white;
    padding: 25px 0;
    margin-bottom: 30px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Adicione no seu bloco de estilos */
.btn-logout {
    transition: all 0.3s ease;
}

.btn-logout:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Mantenha a consistência visual com seu sistema principal */
.header {
    background: linear-gradient(135deg, var(--primary-color), #0b5ed7);
    color: white;
    padding: 20px 0;
    margin-bottom: 30px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: none;
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
    font-weight: 600;
}



/*codigo Fornecedor.php inicio*/

:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --light-bg: #f8f9fa;
}

body {
    background-color: var(--light-bg);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.header {
    background: linear-gradient(135deg, var(--primary-color), #0b5ed7);
    color: white;
    padding: 25px 0;
    margin-bottom: 30px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-logout {
    transition: all 0.3s ease;
}

.btn-logout:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.card {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: none;
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
    font-weight: 600;
}


/*codigo Rodape*/


.footer {
    background-color: #343a40;
    border-top: 4px solid #0d6efd;
}

.footer a {
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #fff !important;
    text-decoration: underline !important;
}

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #0d6efd;
    transform: translateY(-3px);
}

/*pagina de regenciamento_tarefas*/
/* gerenciamento_tarefas.css */
.tarefas-theme {
    --primary-color: #4361ee;
    --secondary-color: #3f37c9;
    --accent-color: #4895ef;
    --success-color: #4cc9f0;
    --warning-color: #f8961e;
    --danger-color: #f72585;
}

.tarefas-theme body {
    background-color: #f5f7fb;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.tarefas-theme .header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.tarefas-theme .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tarefas-theme .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.tarefas-theme .card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px 10px 0 0 !important;
}

/* Prioridades - versão otimizada */
.tarefas-theme .priority-high {
    border-left: 4px solid var(--danger-color);
    background-color: rgba(247, 37, 133, 0.05);
}

.tarefas-theme .priority-medium {
    border-left: 4px solid var(--warning-color);
    background-color: rgba(248, 150, 30, 0.05);
}

.tarefas-theme .priority-low {
    border-left: 4px solid var(--success-color);
    background-color: rgba(76, 201, 240, 0.05);
}

/* Elementos específicos */
.tarefas-theme #calendar {
    background-color: white;
    border-radius: 10px;
}

.tarefas-theme .fc-event {
    cursor: pointer;
    border-radius: 4px;
}

.tarefas-theme .task-completed {
    text-decoration: line-through;
    opacity: 0.7;
}








