.elementor-1311 .elementor-element.elementor-element-11b137b{--display:flex;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-1311 .elementor-element.elementor-element-1022020 .elementor-heading-title{color:#FFFFFF;}.elementor-widget-button .elementor-button{background-color:var( --e-global-color-accent );font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-1311 .elementor-element.elementor-element-f54ccc7 .elementor-button{background-color:#D6FF03;fill:#000000;color:#000000;border-style:solid;border-width:1px 1px 1px 1px;border-color:#000000;}.elementor-1311 .elementor-element.elementor-element-f54ccc7 .elementor-button-content-wrapper{flex-direction:row;}.elementor-1311 .elementor-element.elementor-element-912320a{--display:flex;}/* Start custom CSS for container, class: .elementor-element-912320a *//* ==================================
   Volleyball Results Container
================================== */
.volleyball-results {
  display: flex;
  flex-direction: column;
  gap: 2em;
  padding: 1.5em;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #e5e5e5;
}

/* ==================================
   Competition Titles
================================== */
.competition-title {
  font-weight: 900;
  font-size: 2rem;
  color: #FFD700;
  text-align: center;
  margin-bottom: 0.8em;
  text-shadow: 0 0 8px rgba(0,0,0,0.7);
}

/* ==================================
   Division Titles
================================== */
.division-title {
  font-weight: 800;
  font-size: 1.5rem;
  color: #FFA500;
  text-align: left;
  margin-bottom: 0.5em;
  border-bottom: 2px solid rgba(255, 165, 0, 0.4);
  padding-bottom: 0.2em;
  text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

/* ==================================
   Schedule Block
================================== */
.schedule-block {
  padding: 0.8em;
  border-radius: 12px;
  background: rgba(30,30,35,0.85);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1em;
}

/* Schedule Title */
.schedule-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.6em;
}

/* ==================================
   Matches Container (Grid)
================================== */
.matches-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.8em;
}

/* ==================================
   Individual Match Card
================================== */
.match-result {
  padding: 0.8em;
  border-radius: 10px;
  background: rgba(20,20,25,0.85);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 2px 6px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Match Title */
.match-result h5 {
  margin: 0 0 0.4em;
  font-size: 1rem;
  color: #fff;
}

/* Match Info */
.match-result p {
  margin: 0.1em 0 0.5em;
  font-size: 0.9rem;
  color: #ccc;
}

/* Match Sets Table */
.match-sets {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin-top: 0.3em;
  background: rgba(40,40,45,0.6);
  border-radius: 6px;
  overflow: hidden;
}

.match-sets th,
.match-sets td {
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.3em 0.4em;
  text-align: center;
  color: #eaeaea;
}

.match-sets th {
  background: rgba(255,255,255,0.05);
  font-weight: 600;
}

.match-sets tr:nth-child(even) td {
  background: rgba(255,255,255,0.02);
}

.match-sets td:first-child,
.match-sets th:first-child {
  width: 2em;
}

/* Highlight winning score */
.winning-score {
  background-color: #4CAF50 !important;
  color: #fff;
  font-weight: 600;
}

/* Set summary */
.set-summary {
  margin-top: 0.3em;
  font-weight: 600;
  color: #f5f5f5;
}

/* ==================================
   Responsive Adjustments
================================== */
@media (max-width: 1024px) {
  .matches-container {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .competition-title {
    font-size: 1.6rem;
  }

  .division-title {
    font-size: 1.3rem;
  }

  .matches-container {
    grid-template-columns: 1fr;
    gap: 0.6em;
  }

  .match-result h5 {
    font-size: 0.95rem;
  }

  .match-sets {
    font-size: 0.8rem;
  }
}/* End custom CSS */