﻿/*DeGrader Top*/
.navbar-degrade {
    background: linear-gradient(45deg, #0a3d62, #3498db);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

    .navbar-degrade .nav-link,
    .navbar-degrade .navbar-brand {
        color: white !important;
        font-weight: 500;
    }

        .navbar-degrade .nav-link:hover {
            color: #dff0ff !important;
        }

    .navbar-degrade .dropdown-menu {
        border-radius: 8px;
    }

    .navbar-degrade .dropdown-item:hover {
        background-color: #3498db;
        color: white;
    }
/*Fim Degrade*/
/*Degrader Grid*/
/* HEADER DO GRID */
.grid-header-azul {
    background: linear-gradient(45deg, #0a3d62, #3498db);
    color: white;
    font-weight: 600;
    text-align: center;
}

/* LINHAS DA TABELA */
.grid-azul tbody tr {
    transition: background 0.2s;
}

    .grid-azul tbody tr:hover {
        background-color: #e8f1fb;
    }

/* BORDAS */
.grid-azul {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #0a3d62;
}

    /* CABEÇALHO */
    .grid-azul thead th {
        border-bottom: none;
    }

    /* BOTÃO STATUS */
 /*    .grid-azul .btn {
        background-color: #3498db;
        border: none;
        font-weight: bold;
    }*/

    .grid-azul .btn:hover {
        background-color: #0a3d62;
    }
/*HEADER*/
.header-degrade-azul {
    background: linear-gradient(45deg, #0a3d62, #3498db);
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    font-weight: bold;
}