/* sidebar.css - Estilo elegante para sidebar en tonos oscuros y grises */

/* Contenedor del sidebar */
.single-sidebar {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  color: #ccc;
  font-family: 'Open Sans', sans-serif;
}

/* Estilo de cada widget */
.widget-single {
  background: #2a2a2a; /* gris oxford oscuro */
  border: 1px solid #333;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
}

/* Títulos de los widgets */
.widget-single .widget-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #ffa800;
  margin-bottom: 15px;
  border-bottom: 1px solid #444;
  padding-bottom: 6px;
}

/* Enlaces dentro del widget */
.widget-single a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}

.widget-single a:hover {
  color: #ffa800;
}

/* Listas, como las de categorías o archivos */
.widget-single ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.widget-single ul li {
  margin-bottom: 8px;
  padding-left: 10px;
  border-left: 2px solid #444;
}

/* Responsive para el sidebar */
@media (max-width: 768px) {
  .single-sidebar {
    width: 100%;
    margin-top: 30px;
    padding: 15px;
  }
}
