/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
    Add your custom styles here
*/


/* ---------------------------------------------
   TEC Month view: keep bars tidy (no overlap)
---------------------------------------------- */
.tribe-events-calendar-month__multiday-event-bar-title {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* Make sure the hidden hover layer can receive interactions */
.tribe-events-calendar-month__multiday-event-hidden {
  cursor: pointer;
}

/* ---------------------------------------------
   Custom tooltip (created by JS)
---------------------------------------------- */
.tec-title-tooltip {
  position: fixed;
  z-index: 999999;
  max-width: 360px;
  width: max-content;

  padding: 8px 10px;
  border-radius: 8px;

  background: rgba(17, 17, 17, 0.96);
  color: #fff;

  font-size: 14px;
  line-height: 1.3;

  box-shadow: 0 10px 30px rgba(0,0,0,.25);

  opacity: 0;
  transform: translateY(4px);
  transition: opacity .12s ease, transform .12s ease;

  pointer-events: none;
}

.tec-title-tooltip.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Small arrow */
.tec-title-tooltip::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: 100%;
  border: 7px solid transparent;
  border-bottom-color: rgba(17, 17, 17, 0.96);
}

/* Optional: disable TEC's own JS tooltip if you see duplicates */
.tribe-events-tooltip,
.tooltipster-base,
.tooltipster-box {
  /* uncomment if needed */
  /* display: none !important; */
}