/**
 * Triple Blitz Reports - Styles
 *
 * All classes prefixed with .str- to avoid conflicts
 *
 * @package Starshot_TripleBlitz_Reports
 */

/* ========================================
   VARIABLES & RESETS
   ======================================== */

:root {
    --str-primary-blue: #2B5CE6;
    --str-dark-blue: #1A3C8F;
    --str-light-blue: #E8F0FE;
    --str-accent-yellow: #F2FF65;
    --str-gray: #6B7280;
    --str-dark-gray: #1F2937;
    --str-light-gray: #E5E7EB;
    --str-bg-gray: #F9FAFB;
    --str-black: #111827;
    --str-white: #FFFFFF;
    --str-green: #059669;
    --str-red: #DC2626;
    --str-border-radius: 16px;
    --str-border-radius-sm: 8px;
    --str-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    --str-border: 1px solid var(--str-light-gray);
}

.str-reports-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
    font-size: 14px;
    line-height: 1.5;
    color: var(--str-dark-gray);
    background-color: var(--str-bg-gray);
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.p-relative {
    position: relative;
}

.str-reports-container *,
.str-reports-container *::before,
.str-reports-container *::after {
    box-sizing: border-box;
}

/* ========================================
   HEADER (TB blue gradient)
   ======================================== */

.str-header {
    background: linear-gradient(135deg, #1A3C8F 0%, #2B5CE6 100%);
    padding: 40px 30px;
    color: white;
    border-radius: var(--str-border-radius);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.str-header-content {
    position: relative;
    z-index: 2;
}

.str-header-logo {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.9;
}

.str-header h1 {
    font-size: 36px;
    font-weight: bold;
    margin: 0;
}

/* ========================================
   TAB NAVIGATION
   ======================================== */

.str-tab-navigation {
    display: flex;
    gap: 10px;
    padding: 20px;
    background-color: none;
    border-radius: 0;
    margin-bottom: 20px;
    box-shadow: none;
}

.str-tab-button {
    padding: 12px 24px;
    background-color: var(--str-white) !important;
    border: none;
    border-radius: var(--str-border-radius-sm) !important;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    font-style: normal !important;
    transition: all 0.3s ease;
    color: var(--str-black) !important;
    text-transform: capitalize !important;
    border: var(--str-border) !important;
}

.str-tab-button:hover {
    background-color: var(--str-light-blue) !important;
    color: var(--str-primary-blue) !important;
}

.str-tab-button.active {
    background-color: var(--str-dark-blue) !important;
    color: var(--str-white) !important;
}

/* ========================================
   TAB CONTENT
   ======================================== */

.str-tab-content {
    display: none;
}

.str-tab-content.active {
    display: block;
}

/* ========================================
   REPORT CONTENT
   ======================================== */

.str-report-content {
    padding: 0 20px 40px;
}

.str-section-title {
    font-size: 33px;
    font-weight: bold;
    margin-bottom: 30px;
    padding: 0 9px;
}

.str-section-title-margin {
    margin-top: 63px;
    margin-bottom: 30px;
}

/* ========================================
   BUTTONS
   ======================================== */

.str-button-primary {
    padding: 10px 24px;
    background-color: var(--str-primary-blue);
    color: var(--str-white);
    border: none;
    border-radius: var(--str-border-radius);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.str-button-primary:hover {
    background-color: var(--str-dark-blue);
}

/* ========================================
   STAT BOXES
   ======================================== */

.str-stat-boxes-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    align-items: stretch;
}

.str-stat-boxes-row .str-section-title {
    flex: 0 0 auto;
    align-self: center;
}

.str-stat-boxes-container {
    flex: 1;
    display: flex;
    gap: 20px;
    align-items: stretch;
    justify-content: flex-end;
    min-width: 640px;
}

.str-stat-boxes-container .str-stat-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 360px;
}

.str-stat-box {
    background-color: var(--str-white);
    border-radius: var(--str-border-radius);
    padding: 15px 21px;
    box-shadow: var(--str-box-shadow);
    position: relative;
    overflow: hidden;
    border: var(--str-border);
}

.str-stat-boxes-double {
    box-shadow: var(--str-box-shadow);
    background-color: var(--str-white);
    border-radius: var(--str-border-radius);
    border: var(--str-border);
    margin-bottom: 0;
    justify-content: center;
    align-items: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.str-stat-box-sm {
    border-radius: var(--str-border-radius-sm);
}

.str-stat-box-sm .str-stat-label {
    font-size: 14px;
}

.str-stat-label {
    font-size: 24px;
    font-weight: 600;
    color: var(--str-black);
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
}

.str-stat-sublabel {
    font-size: 12px;
    margin-top: 3px;
}

.str-stat-value {
    font-size: 36px;
    font-weight: bold;
    color: var(--str-dark-gray);
    line-height: 1;
    text-align: center;
}

.str-stat-yoy {
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

.str-stat-yoy.up {
    color: var(--str-green);
}

.str-stat-yoy.down {
    color: var(--str-red);
}

.str-stat-box-xl,
.str-stat-box-large {
    background-color: var(--str-white);
    border-radius: var(--str-border-radius);
    padding: 40px;
    box-shadow: var(--str-box-shadow);
    text-align: center;
    border: var(--str-border);
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 30%;
}

.str-stat-box-inline {
    border-radius: none;
    box-shadow: none;
    border: none;
}

.str-stat-value-xl,
.str-stat-value-large {
    font-size: 93px;
    font-weight: bold;
    color: var(--str-primary-blue);
    line-height: 1;
}

.str-large-stats {
    grid-template-columns: repeat(2, 1fr);
}

/* ========================================
   CHARTS
   ======================================== */

.str-chart-container {
    background-color: var(--str-white);
    border-radius: var(--str-border-radius);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--str-box-shadow);
    border: var(--str-border);
}

.str-chart-donut {
    padding: 0;
}

.str-chart-donut .str-chart-title {
    padding: 30px 30px 15px;
}

.str-chart-title {
    font-size: 18px !important;
    font-weight: 600;
    color: var(--str-dark-gray);
    margin: 0 0 20px 0;
    font-style: normal !important;
    font-family: 'Titillium Web', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    letter-spacing: normal !important;
    text-transform: none !important;
}

.str-chart-wrapper {
    width: 100%;
    min-height: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Compact chart wrappers inside 4-col rows */
.str-charts-row[style*="grid-template-columns: 1fr 1fr 1fr 1fr"] .str-chart-container {
    padding: 20px;
}
.str-charts-row[style*="grid-template-columns: 1fr 1fr 1fr 1fr"] .str-chart-wrapper {
    min-height: 200px;
}
.str-charts-row[style*="grid-template-columns: 1fr 1fr 1fr 1fr"] .str-chart-container,
.str-charts-row[style*="grid-template-columns: 1fr 1fr 1fr 1fr"] .str-ee-card {
    min-height: 0;
}

.str-charts-row {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.str-charts-row > .str-chart-container {
    margin-bottom: 0;
}

.str-two-col-grid-one-three {
    grid-template-columns: 1.39fr 2fr;
}

.str-two-col-grid-five-one {
    grid-template-columns: 4fr 1fr;
}

.str-charts-row.str-two-col {
    grid-template-columns: repeat(2, 1fr);
}

.str-charts-row.str-three-col {
    grid-template-columns: repeat(3, 1fr);
}

.str-charts-row.str-one-col {
    grid-template-columns: 1fr;
}

/* Responsive charts */
@media (max-width: 1200px) {
    .str-charts-row.str-three-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .str-charts-row.str-two-col,
    .str-charts-row.str-three-col {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   TABLES
   ======================================== */

.str-table-container {
    background-color: var(--str-white);
    border-radius: var(--str-border-radius);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--str-box-shadow);
    border: var(--str-border);
}

.str-table-container table tbody>tr:nth-child(even)>td,
.str-table-container table tbody>tr:nth-child(even)>th {
    background-color: var(--str-light-gray);
}

.str-table-container table tbody>tr:nth-child(odd)>td,
.str-table-container table tbody>tr:nth-child(odd)>th {
    background-color: #fff;
}

.str-table-title {
    font-size: 18px !important;
    font-weight: 600;
    color: var(--str-dark-gray);
    margin: 0 0 20px 0;
}

.str-table-wrapper {
    overflow-x: auto;
    position: relative;
}

.str-scrollable-table {
    max-height: 530px;
    overflow-y: auto;
}

.str-table {
    width: 100%;
    border-collapse: collapse;
}

.str-table thead {
    background-color: none;
}

.str-table th,
.str-table td {
    padding: 3px 9px;
    text-align: left;
    border: none !important;
    border-bottom: 0px solid var(--str-light-gray);
}

.str-table th {
    font-weight: 600;
    color: var(--str-dark-gray);
    text-transform: uppercase;
    font-size: 12px;
    padding: 0 9px 15px;
}

.str-table tr:hover {
    background-color: var(--str-bg-gray);
}

.str-tables-row {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.str-tables-row.str-two-col {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
    .str-tables-row.str-two-col {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   LOADING STATES
   ======================================== */

.str-loading {
    position: relative;
}

.str-loader-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    z-index: 10;
    border-radius: var(--str-border-radius);
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Hide shimmer elements when parent is not loading */
.str-stat-box:not(.str-loading) .str-loader-shimmer,
.str-chart-wrapper:not(.str-loading) .str-loader-shimmer,
.str-table-wrapper:not(.str-loading) .str-loader-shimmer {
    display: none;
    animation: none;
}

.str-loader-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
    width: 50px;
    height: 50px;
    border: 4px solid var(--str-light-gray);
    border-top-color: var(--str-primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.str-loading .str-stat-value,
.str-loading .str-stat-value-xl,
.str-loading .str-stat-value-large {
    opacity: 0.3;
}

/* ========================================
   ERROR STATE
   ======================================== */

.str-error {
    background-color: #FEE;
    border: 1px solid var(--str-red);
    border-radius: var(--str-border-radius);
    padding: 20px;
    margin: 20px 0;
    color: var(--str-red);
    font-weight: 600;
}

/* ========================================
   PLACEHOLDERS
   ======================================== */

.str-placeholder {
    min-height: 400px;
}

/* ========================================
   NO DATA & ERROR STATES
   ======================================== */

.str-no-data,
.str-error {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 200px;
    flex: 1 1 auto;
    padding: 40px 20px;
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
}

.str-no-data {
    color: var(--str-gray);
    font-style: italic;
}

.str-error {
    color: var(--str-red);
    font-weight: 600;
}

/* ========================================
   HIDDEN STATE
   ======================================== */

.str-hidden {
    display: none !important;
}

/* ========================================
   VIEW DETAILS BUTTON
   ======================================== */

.str-view-details-wrapper {
    text-align: center;
    margin-top: 15px;
}

.str-view-details-btn {
    background-color: var(--str-dark-blue);
    color: var(--str-white);
    border: none;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--str-border-radius-sm);
    transition: all 0.3s ease;
}

.str-view-details-btn:hover {
    background-color: var(--str-dark-gray);
}

/* ========================================
   COLLAPSIBLE SECTIONS
   ======================================== */

.str-collapsible-section {
    margin-bottom: 30px;
}

.str-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    padding: 10px 0;
}

.str-section-header:hover {
    opacity: 0.8;
}

.str-collapse-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
    color: var(--str-dark-gray);
}

.str-collapsible-section.collapsed .str-collapse-icon {
    transform: rotate(-90deg);
}

.str-section-content {
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    max-height: 10000px;
    opacity: 1;
}

.str-collapsible-section.collapsed .str-section-content {
    max-height: 0;
    opacity: 0;
    padding: 0;
}

/* Remove margin from .str-section-title when inside header */
.str-section-header .str-section-title {
    margin-bottom: 0;
}

/* ========================================
   SECTION UTILITIES
   ======================================== */

.str-section-margin {
    margin-top: 69px;
}

.str-section-subtitle {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--str-dark-gray);
}

/* ========================================
   SELECT DROPDOWN
   ======================================== */

.str-select {
    padding: 12px 16px;
    border: var(--str-border);
    border-radius: var(--str-border-radius-sm);
    font-size: 14px;
    font-family: inherit;
    background-color: var(--str-white);
    cursor: pointer;
    min-width: 200px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.str-select:focus {
    outline: none;
    border-color: var(--str-primary-blue);
}

.str-select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ========================================
   LEGEND
   ======================================== */

.str-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--str-dark-gray);
    text-transform: uppercase;
}

.str-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

/* ========================================
   TB-SPECIFIC: BLUE METRIC CARDS
   ======================================== */

.str-metric-card-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.str-metric-card-blue {
    flex: 1;
    min-width: 150px;
    background-color: var(--str-primary-blue);
    color: var(--str-white);
    border-radius: var(--str-border-radius);
    padding: 24px 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.str-metric-card-blue .str-metric-card-label {
    font-size: 24px;
    font-weight: 700;
    text-transform: none;
    opacity: 1;
    margin-bottom: 12px;
}

/* Value row: number + pill inline */
.str-metric-card-blue .str-metric-card-value-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.str-metric-card-blue .str-metric-card-value {
    font-size: 42px;
    font-weight: bold;
    line-height: 1;
}

/* Yellow pill delta — inline next to value */
.str-metric-card-blue .str-metric-card-delta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #F2FF65;
    color: var(--str-dark-gray);
    font-size: 13px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    line-height: 1;
}

.str-metric-card-blue .str-metric-card-delta.up,
.str-metric-card-blue .str-metric-card-delta.down {
    background: #F2FF65;
    color: var(--str-dark-gray);
}

/* Comparison text below */
.str-metric-card-blue .str-metric-card-comparison {
    font-size: 13px;
    opacity: 0.8;
    margin-top: 8px;
}

.str-metric-card-blue .str-metric-card-sublabel {
    font-size: 11px;
    opacity: 0.7;
    margin-top: 4px;
}

/* ========================================
   TB-SPECIFIC: OKR CARDS (2x2 grid)
   ======================================== */

.str-okr-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.str-okr-card {
    background: var(--str-white);
    border-radius: var(--str-border-radius);
    padding: 24px 28px;
    border: var(--str-border);
    box-shadow: var(--str-box-shadow);
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr;
    gap: 16px 20px;
    align-items: start;
}

/* Title — top left */
.str-okr-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--str-dark-gray);
    align-self: center;
}

/* Blue target badge — top right */
.str-okr-badge {
    background-color: var(--str-primary-blue);
    color: var(--str-white);
    border-radius: 12px;
    padding: 14px 28px;
    text-align: center;
    min-width: 130px;
}

.str-okr-badge-value {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
}

/* Dual bar chart — bottom left */
.str-okr-bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.str-okr-bar-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.str-okr-bar-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--str-dark-gray);
}

.str-okr-bar-track {
    width: 100%;
    height: 14px;
    background: var(--str-light-gray);
    border-radius: 7px;
    overflow: hidden;
    position: relative;
}

.str-okr-bar-fill-inner {
    height: 100%;
    border-radius: 7px;
    transition: width 1s ease;
}

.str-okr-bar-actual .str-okr-bar-fill-inner {
    background-color: var(--str-accent-yellow);
}

.str-okr-bar-goal .str-okr-bar-fill-inner {
    background-color: var(--str-primary-blue);
}

.str-okr-legend {
    display: flex;
    gap: 16px;
    margin-top: 4px;
}

.str-okr-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--str-dark-gray);
    text-transform: uppercase;
}

.str-okr-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.str-okr-dot-actual {
    background-color: var(--str-accent-yellow);
}

.str-okr-dot-goal {
    background-color: var(--str-primary-blue);
}

/* Half-donut gauge — bottom right */
.str-okr-gauge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    align-self: end;
}

.str-okr-gauge-svg {
    width: 120px;
    height: 70px;
}

.str-okr-gauge-track {
    stroke: var(--str-light-gray);
}

.str-okr-gauge-fill {
    stroke: var(--str-primary-blue);
    transition: stroke-dashoffset 1s ease;
}

.str-okr-gauge-value {
    font-size: 18px;
    font-weight: bold;
    color: var(--str-dark-gray);
    margin-top: -4px;
}

@media (max-width: 768px) {
    .str-okr-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   TB-SPECIFIC: EXPERT EXCHANGE ATTENDANCE
   ======================================== */

.str-ee-attendance-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.str-ee-card {
    background: var(--str-primary-blue);
    color: var(--str-white);
    border-radius: var(--str-border-radius);
    padding: 24px;
}

.str-ee-card-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.str-ee-card-stats {
    display: flex;
    justify-content: space-around;
}

.str-ee-stat {
    text-align: center;
}

.str-ee-stat-label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    opacity: 0.85;
}

.str-ee-stat-value {
    font-size: 36px;
    font-weight: bold;
}

/* ========================================
   TB-SPECIFIC: WEBCAST DETAIL CARDS
   ======================================== */

.str-webcast-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.str-webcast-detail-card {
    background: var(--str-white);
    border-radius: var(--str-border-radius);
    padding: 24px;
    border: var(--str-border);
    box-shadow: var(--str-box-shadow);
}

.str-webcast-detail-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: var(--str-dark-gray);
}

.str-webcast-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.str-webcast-bar-label {
    font-size: 12px;
    color: var(--str-gray);
    min-width: 100px;
}

.str-webcast-bar {
    flex: 1;
    height: 16px;
    background: var(--str-light-gray);
    border-radius: 4px;
    overflow: hidden;
}

.str-webcast-bar-fill {
    height: 100%;
    background: var(--str-primary-blue);
    border-radius: 4px;
}

.str-webcast-bar-value {
    font-size: 12px;
    font-weight: 600;
    min-width: 30px;
    text-align: right;
}

.str-webcast-approved {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--str-light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.str-webcast-approved-label {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--str-gray);
}

.str-webcast-approved-value {
    font-size: 28px;
    font-weight: bold;
    color: var(--str-primary-blue);
}

/* ========================================
   TB-SPECIFIC: MONTHLY TRAINING HEADER
   ======================================== */

.str-training-header-row {
    display: flex;
    gap: 16px;
    align-items: stretch;
    margin-bottom: 30px;
}

.str-training-month-badge {
    background: var(--str-accent-yellow);
    color: var(--str-dark-gray);
    border-radius: var(--str-border-radius);
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 120px;
}

.str-training-month-badge .str-badge-label {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
}

.str-training-month-badge .str-badge-value {
    font-size: 28px;
    font-weight: bold;
}

/* ========================================
   TB-SPECIFIC: STILL NEED TO COMPLETE
   ======================================== */

.str-still-need-card {
    background: var(--str-primary-blue);
    color: var(--str-white);
    border-radius: var(--str-border-radius);
    padding: 20px 24px;
    flex: 1;
}

.str-still-need-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.str-still-need-stats {
    display: flex;
    gap: 30px;
}

.str-still-need-stat {
    text-align: center;
}

.str-still-need-label {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 4px;
}

.str-still-need-value {
    font-size: 28px;
    font-weight: bold;
}

/* ========================================
   RESPONSIVE - 1400px
   ======================================== */

@media (max-width: 1400px) {
    .str-webcast-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   RESPONSIVE - 1200px
   ======================================== */

@media (max-width: 1200px) {
    .str-two-col-grid-one-three,
    .str-two-col-grid-five-one {
        grid-template-columns: 1fr;
    }

    .str-webcast-cards-row {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   RESPONSIVE - 768px
   ======================================== */

@media (max-width: 768px) {
    .str-header {
        padding: 28px 20px;
    }

    .str-header h1 {
        font-size: 28px;
    }

    .str-stat-boxes-row {
        flex-direction: column;
    }

    .str-stat-boxes-container {
        min-width: 0;
        flex-direction: column;
    }

    .str-stat-boxes-container .str-stat-box {
        max-width: none;
    }

    .str-stat-value {
        font-size: 36px;
    }

    .str-stat-value-xl,
    .str-stat-value-large {
        font-size: 48px;
    }

    .str-tab-navigation {
        flex-direction: column;
    }

    .str-tab-button {
        width: 100%;
    }

    .str-metric-card-row {
        flex-direction: column;
    }

    .str-metric-card-blue {
        min-width: 100%;
    }

    .str-okr-row {
        flex-direction: column;
    }

    .str-ee-attendance-row {
        grid-template-columns: 1fr;
    }

    .str-webcast-cards-row {
        grid-template-columns: 1fr;
    }

    .str-training-header-row {
        flex-direction: column;
    }

    .str-still-need-stats {
        flex-direction: column;
        gap: 16px;
    }

    .str-ee-card-stats {
        flex-direction: column;
        gap: 16px;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .str-header,
    .str-tab-navigation {
        display: none;
    }

    .str-reports-container {
        background-color: var(--str-white);
    }

    .str-chart-container,
    .str-stat-box,
    .str-stat-box-xl,
    .str-stat-box-large,
    .str-table-container,
    .str-metric-card-blue,
    .str-okr-card,
    .str-webcast-detail-card,
    .str-ee-card,
    .str-still-need-card {
        box-shadow: none;
        border: 1px solid var(--str-light-gray);
        page-break-inside: avoid;
    }

    .str-metric-card-blue,
    .str-ee-card,
    .str-still-need-card {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .str-tab-content {
        display: block !important;
    }

    .str-loading,
    .str-loader-shimmer,
    .str-loader-spinner {
        display: none !important;
        animation: none;
    }
}
