.bni-relatorio-wrap {
    max-width: 100%;
    margin: 20px 0;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.bni-relatorio-filters {
    margin-bottom: 20px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 4px;
}

.bni-filter-form {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.bni-select {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-width: 200px;
}

.bni-button {
    background: #cf2030;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.bni-button:hover {
    background: #b51b29;
}

.bni-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.bni-table th,
.bni-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.bni-table th {
    background-color: #cf2030;
    color: white;
}

.bni-table tr.reservado {
    background-color: #cf2030;
    color: white;
}

.bni-table tr:hover:not(.reservado) {
    background-color: #f5f5f5;
}

@media screen and (max-width: 768px) {
    .bni-filter-form {
        flex-direction: column;
    }
    
    .bni-select {
        width: 100%;
    }
    
    .bni-table {
        display: block;
        overflow-x: auto;
    }
}

/* Estilos para o formulário de upload */
.bni-upload-wrap {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.bni-upload-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bni-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bni-form-row label {
    font-weight: bold;
    color: #333;
}

.bni-form-row input[type="file"] {
    padding: 10px;
    border: 2px dashed #ddd;
    border-radius: 4px;
    background: #f9f9f9;
}

.bni-message {
    padding: 15px;
    margin: 10px 0;
    border-radius: 4px;
}

.bni-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.bni-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media screen and (max-width: 768px) {
    .bni-upload-wrap {
        margin: 10px;
        padding: 15px;
    }
} 