/*
Theme Name: Nighthemy WP Theme
Theme URI: https://nighthemy.com/
Author: Jaime V.
Author URI: https://ojsoluciones.com/
Description: Tema personalizado con soporte para Elementor y plugins comunes.
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mi-tema
*/


/* ================================
   THE EVENTS CALENDAR - CUSTOM STYLE
   ================================ */

/* Fuente global */
.tribe-events,
.tribe-events * {
    font-family: 'Unbounded', sans-serif !important;
    color: #111 !important;
    background: #fff !important;
}

/* Contenedor general */
.tribe-events {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Títulos */
.tribe-events h1,
.tribe-events h2,
.tribe-events h3 {
    color: #000;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Listado de eventos */
.tribe-events-calendar-list__event {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    background: #fafafa;
    transition: all 0.3s ease;
}

.tribe-events-calendar-list__event:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
}

/* Botones */
.tribe-events .tribe-events-button {
    background: #111;
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.tribe-events .tribe-events-button:hover {
    background: #333;
}

/* Meta información */
.tribe-events .tribe-events-meta {
    font-size: 14px;
    color: #555;
}

/* Navegación entre meses o páginas */
.tribe-events .tribe-events-c-nav__next,
.tribe-events .tribe-events-c-nav__prev {
    background: transparent;
    color: #111;
    font-weight: 600;
}



/* Eliminar márgenes y paddings por defecto del body */
body {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden;
}