/* =========================
FILE: styles.css
Descripción: Estilos visuales del sistema Koala
Basado en la imagen de referencia
========================= */

/* RESET BÁSICO */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f5f6f8;
}

/* =========================
SIDEBAR
========================= */
.sidebar {
  width: 360px;
  height: 100vh;
  background-color: #1f8f3a; 
  color: white;
  display: flex;
  flex-direction: column;
}

.logo {
  text-align: center;
  font-weight: bold;
}

/* MENÚ */
.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  margin: 10px 0;
}

.sidebar ul li a {
  color: white;
  text-decoration: none;
  display: block;
}

.sidebar ul li a:hover {
  background-color: rgba(255,255,255,0.2);
  padding-left: 10px;
}

/* REDES */
.social {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  font-size: 20px;
}

/* =========================
CONTENIDO
========================= */
.content {
  background-color: #f5f6f8;
}

.container {
  background: gray;
  min-height: 900px;
  display: flex;
  justify-content: flex-start;
  padding: 20px;
}
/* TARJETAS CATEGORÍAS */
.category-card {
  border-radius: 10px;
  transition: 0.3s;
}

.category-card:hover {
  transform: scale(1.05);
}

/* ICONOS */
.icon {
  font-size: 40px;
  margin-bottom: 10px;
}

/* NOTICIAS */
.news-box {
  max-width: 500px;
  border: 2px solid #1f8f3a;
  border-radius: 10px;
  background-color: white;
}