/* ============================================
   VIXVIU REPORT SYSTEM — BASE LAYOUT
============================================ */
.vixviu-report {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  font-family: inherit;
  color: #222;
  background: #fff;
}

.vixviu-report-header {
  margin-bottom: 30px;
  text-align: center;
}

/* ============================================
   TITLES
============================================ */
.vixviu-title-1 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.vixviu-title-2 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.3;
}

/* ============================================
   SECTION HEADER (COLLAPSIBLE)
============================================ */
.vixviu-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f5f5f5;
  padding: 12px 16px;
  margin-top: 30px;
  border-radius: 6px;
  cursor: pointer;
}

.toggle-section {
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0 6px;
  color: #467;
}

/* ============================================
   SECTION BODY LAYOUT (CHART + TEXT)
============================================ */
.vixviu-report-charts {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: nowrap;
}

.vixviu-report-charts > *:first-child {
  flex: 0 0 28%;
  max-width: 28%;
}

.vixviu-report-charts > *:last-child {
  flex: 1 1 auto;
  max-width: 72%;
}

/* ============================================
   INDIVIDUAL CHART BLOCK
============================================ */
.widget-chart-container {
  background: #fff;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 6px;
  box-sizing: border-box;
  width: 100%;
}

.widget-chart-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

/* ============================================
   WIDTH OVERRIDES
============================================ */
.chart-width-full {
  width: 100%;
}

.chart-width-half {
  width: 48%;
}

.chart-width-third {
  width: 31.5%;
}

/* ============================================
   COLLAPSIBLE VISIBILITY
============================================ */
.collapsible.closed {
  display: none;
}

/* ============================================
   ACTION BUTTONS (for bottom of modal)
============================================ */
.vixviu-modal-footer-actions {
  margin-top: 30px;
  display: flex;
  justify-content: flex-start;
  gap: 15px;
}

.vixviu-modal-footer-actions button {
  padding: 10px 15px;
  background: #0073aa;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.vixviu-modal-footer-actions button:last-child {
  background: #555;
}

/* ============================================
   MOBILE RESPONSIVE
============================================ */
@media screen and (max-width: 768px) {
  .vixviu-report {
    padding: 15px;
  }

  .vixviu-title-1 {
    font-size: 20px;
  }

  .vixviu-title-2 {
    font-size: 16px;
  }

  .widget-chart-title {
    font-size: 15px;
  }

  .vixviu-report-charts {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .vixviu-report-charts > * {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .chart-width-half,
  .chart-width-third,
  .chart-width-full {
    width: 100% !important;
  }

  .vixviu-modal-footer-actions {
    flex-direction: column;
  }
} 