﻿/* Estilos para o Dashboard OCI */
.oci-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.oci-title {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
    font-weight: bold;
}

.oci-section {
    margin-bottom: 30px;
}

.section-header {
    background-color: #607d8b;
    color: white;
    padding: 10px 15px;
    border-radius: 4px 4px 0 0;
}

    .section-header h3 {
        margin: 0;
        font-size: 18px;
    }

.section-content {
    padding: 15px;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    background-color: #fff;
}

.oci-table {
    width: 100%;
    border-collapse: collapse;
}

    .oci-table th, .oci-table td {
        padding: 12px 8px;
        text-align: left;
        border-bottom: 1px solid #eee;
    }

    .oci-table th {
        font-weight: bold;
        color: #333;
    }

.btn-action {
    color: #4caf50;
    font-size: 18px;
    text-decoration: none;
    display: inline-block;
}

    .btn-action:hover {
        color: #388e3c;
    }

