/* Estilos globais para o sistema de Ficha Técnica */
body {
    background-color: #f8f9fa;
}
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    background: linear-gradient(to right, #343a40, #23272b) !important;
    padding: 10px 0;
}
.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: white !important;
}
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s;
}
.navbar-dark .navbar-nav .nav-link:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-nav .nav-link.active {
    color: white;
    background-color: rgba(78, 115, 223, 0.9);
}
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,.1);
    margin-bottom: 20px;
}
.card-header {
    background: linear-gradient(to right, #4e73df, #224abe);
    color: white;
    border-radius: 10px 10px 0 0 !important;
    padding: 15px 20px;
}
.form-control, .form-select {
    border-radius: 8px;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
}
.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 3px rgba(78, 115, 223, 0.25);
    border-color: #4e73df;
}
.btn-primary {
    background: linear-gradient(to right, #4e73df, #224abe);
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.1);
    transition: all 0.3s;
}
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1);
}
.btn-icon {
    margin-right: 8px;
}
.table {
    border-collapse: separate;
    border-spacing: 0;
}
.table thead th {
    background-color: #f1f5fe;
    color: #224abe;
    border-top: none;
    border-bottom: 2px solid #e5e9f2;
}
.table tbody tr:hover {
    background-color: rgba(78, 115, 223, 0.05);
}
.table-responsive {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,.05);
}
.input-group-text {
    background-color: #f8f9fa;
    border-color: #e0e0e0;
}
.alert-info {
    background-color: rgba(78, 115, 223, 0.1);
    border-color: rgba(78, 115, 223, 0.2);
    color: #224abe;
}
.page-header {
    margin-bottom: 30px;
}
.page-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}
.page-subtitle {
    color: #6c757d;
    font-weight: 400;
}
.icon-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(to right, #4e73df, #224abe);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
}
.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

/* Estilos específicos para tabelas de dados */
.data-table th, .data-table td {
    vertical-align: middle;
}
.data-table .actions {
    width: 120px;
}

/* Footer */
footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e5e9f2;
    padding: 20px 0;
    margin-top: 50px;
}

/* Responsividade */
@media (max-width: 767.98px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .card-body {
        padding: 15px;
    }
    .page-header {
        text-align: center;
        margin-bottom: 20px;
    }
    .section-header {
        flex-direction: column;
        text-align: center;
    }
    .icon-container {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .navbar-dark .navbar-nav .nav-link.active {
        margin-left: 0;
        margin-right: 0;
    }
} 