/* normativas.css */

.normativas-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}

.normativas-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.normativas-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-end;
}

.form-group {
    display: flex;
    flex-direction: column;
    min-width: 200px;
    flex: 1;
}

.form-group label {
    margin-bottom: 6px;
    color: #34495e;
    font-weight: 600;
}

.form-group input,
.form-group select {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

.btn-search {
    padding: 10px 20px;
    background-color: #2d89ef;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.btn-search:hover {
    background-color: #2361b4;
}

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

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

.normativas-table th {
    background-color: #f2f4f8;
    color: #2c3e50;
    font-weight: 600;
}

.link-visualizar {
    color: #2980b9;
    font-weight: 500;
    text-decoration: none;
}

.link-visualizar:hover {
    text-decoration: underline;
}

.btn-download {
    padding: 6px 12px;
    background-color: #7f8c8d;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-download:hover {
    background-color: #636e72;
}

.btn-download:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.text-center {
    text-align: center;
}

.text-muted {
    color: #999;
}
