﻿:root {
    --orange: #f5b335;
    --orangeClaro: #FFC654;
	--blue: #282081;
	--azulClaro: #f5f5f5;
	--azulBarra: #003366;
	--verdePetroleo: #0C2114;
	--white: #ffffff;
	--gray: #f5f5f5;
    --black: #000;
	--transition: all 1s ease;
}
body {
  font-family: Helvetica, Arial,'PT Sans' , sans-serif;	
  margin: 0;
  padding: 0;
  background: #f4f6f9;
}

.container {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 250px;
  background: var(--azulBarra);
  color: white;
  padding: 20px;
}

.sidebar h2 {
  margin-top: 0;
}

.sidebar label,
.sidebar select {
  display: block;
  margin: 15px 0 5px;
  width: 100%;
}

.sidebar select {
  padding: 5px;
  border-radius: 5px;
  border: none;
}

/* Main */
.main {
  flex: 1;
  padding: 10px;
}

.years, .months {
  margin-bottom: 10px;
}

.month-btn
{
	margin: 5px;
	padding: 8px 15px;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	background-color: #e7e7e7; 
	color: black;
	transition: background 0.3s;
	font-size: 0.8rem;
}

.month-btn:hover
{
	background: #ddd;
}

.month-btn.active {
  background: #1abc9c;
}


.year-btn
{
	margin: 5px;
	padding: 8px 15px;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	background: #3498db;
	color: white;
	transition: background 0.3s;
	font-size: 1.1rem;
}

.year-btn:hover {
  background: #2980b9;
}

.year-btn.active {
  background: #1abc9c;
}



.documents h2 {
  margin-top: 0;
}

.documents ul {
  list-style: none;
  padding: 0;
}

.documents li {
  margin: 5px 0;
}

.documents a {
  color: #2c3e50;
  text-decoration: none;
}

.documents a:hover {
  text-decoration: underline;
}





.actas-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.acta-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1rem 1.2rem;
    margin: 10px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.acta-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.acta-titulo
{
    font-size: 1rem;
    font-weight: 600;
    color: var(--verdePetroleo);
    margin-bottom: 0.3rem; /* menos espacio debajo */
    line-height: 0.8; /* texto más compacto */
    letter-spacing: 0.1px;
    text-transform: uppercase; /* opcional para estilo institucional */
}

.acta-organo {
    color: #333;
    font-size: 0.9rem;
    font-style: italic;
    display: block;
    margin-bottom: 0.25rem;
}

.acta-info {
    font-size: 0.85rem;
    color: #777;
    display: block;
    margin-bottom: 0.25rem;
}

.acta-descripcion {
    color: #555;
    font-size: 0.9rem;
    margin-top: 0.3rem;
    display: block;
}

.acta-link {
    display: inline-block;
    margin-top: 0.6rem;
    background-color: var(--orange);
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.acta-link:hover {
    background-color: var(--orangeClaro);
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    transform: translateY(-1px);
}



