.chart-wrapper {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.chart-wrapper canvas {
    width: 100% !important;
    height: 100% !important;
}

.chart-title {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Ensure chart containers have proper dimensions */
.charts-container {
    min-height: 400px;
}

.charts-container .col-12,
.charts-container .col-lg-6,
.charts-container .col-lg-4 {
    margin-bottom: 1.5rem;
}

/* Loading state styling */
.chart-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    border-radius: 4px;
    z-index: 1;
}

/* Chart tooltip styling */
.chartjs-tooltip {
    background: rgba(0, 0, 0, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 4px !important;
    color: white !important;
    padding: 8px !important;
}

/* Chart axis styling */
.chartjs-axis-line {
    stroke: rgba(255, 255, 255, 0.1) !important;
}

.chartjs-grid-line {
    stroke: rgba(255, 255, 255, 0.05) !important;
}

/* Chart point styling */
.chartjs-point {
    stroke: rgba(255, 159, 28, 1) !important;
    fill: rgba(255, 159, 28, 0.5) !important;
}

/* Chart line styling */
.chartjs-line {
    stroke: rgba(255, 159, 28, 1) !important;
    stroke-width: 2px !important;
}

/* Chart area styling */
.chartjs-area {
    fill: rgba(255, 159, 28, 0.2) !important;
}

/* Chart bar styling */
.chartjs-bar {
    stroke: rgba(255, 159, 28, 1) !important;
    fill: rgba(255, 159, 28, 0.5) !important;
}

/* Hero picker modal styles */
#heroPickerModal .modal-dialog {
    max-width: 800px;
}

#heroPickerModal .modal-body {
    max-height: 600px;
    overflow-y: auto;
    padding: 1.5rem;
}

#heroSearch {
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: var(--bs-body-bg);
    padding: 1rem;
    margin: -1.5rem -1.5rem 1rem -1.5rem;
    border-bottom: 1px solid var(--bs-border-color);
}

/* Hero grid styles */
.hero-select-card {
    background-color: var(--bs-dark);
    border: 1px solid var(--bs-border-color);
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.15s ease;
    height: 100%;
}

.hero-select-card:hover {
    border-color: var(--bs-primary);
    transform: translateY(-1px);
    background-color: var(--bs-secondary-bg);
}

.hero-select-card .hero-name {
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.hero-grid-item {
    min-height: 60px;
}

/* Map type header styles */
.map-type-header {
    background-color: var(--bs-dark);
    transition: background-color 0.15s ease;
}

.map-type-header:hover {
    background-color: var(--bs-secondary);
    cursor: pointer;
}

.map-type-header i.fas {
    transition: transform 0.2s ease;
    font-size: 0.875rem;
}

.map-type-header.collapsed i.fas {
    transform: rotate(-90deg);
}

.map-count {
    font-size: 0.75rem;
    color: var(--bs-secondary-color);
}

/* Hero cell styles */
.hero-cell {
    display: flex;
    align-items: center;
    padding: 0.375rem;
    border-radius: 0.375rem;
    background-color: var(--bs-dark);
    min-height: 38px;
    gap: 0.5rem;
}

.hero-cell.has-hero {
    background-color: var(--bs-secondary-bg);
}

.selected-hero {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.hero-cell .hero-name {
    font-size: 0.875rem;
}

.btn-icon {
    padding: 0.25rem;
    line-height: 1;
    color: var(--bs-secondary-color);
    opacity: 0.5;
    transition: all 0.15s ease;
    border: none;
    background: transparent;
}

.btn-icon:hover {
    opacity: 1;
    color: var(--bs-primary);
}

/* Map cell styles */
.map-cell {
    background-color: var(--bs-dark);
}

.map-info {
    padding: 0.375rem 0.75rem;
}

.map-name {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.map-notes {
    font-size: 0.75rem !important;
    padding: 0.25rem 0.5rem !important;
    background-color: transparent !important;
    border: 1px solid transparent !important;
    transition: all 0.15s ease !important;
    resize: none;
}

.map-notes:hover {
    background-color: var(--bs-secondary-bg) !important;
    border-color: var(--bs-border-color) !important;
}

.map-notes:focus {
    background-color: var(--bs-secondary-bg) !important;
    border-color: var(--bs-primary) !important;
    box-shadow: none !important;
}

/* Stats panel styles */
#statsPanel {
    transition: all 0.3s ease;
}

#statsPanel .badge {
    transition: all 0.2s ease;
}

#statsPanel .badge:hover {
    transform: scale(1.1);
}

/* Saved plans list styles */
#savedPrepsList .list-group-item {
    transition: all 0.15s ease;
    padding: 0.75rem;
}

#savedPrepsList .list-group-item:hover {
    background-color: var(--bs-secondary-bg);
}

#savedPrepsList .badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

/* Table styles */
.table> :not(caption)>*>* {
    padding: 0.375rem;
}

/* ===== NEW SCHEDULE PAGE STYLES ===== */

/* Schedule Header - Override old styles */
.schedule-header {
    margin-bottom: 2rem !important;
}

.schedule-header h2 {
    color: #fff !important;
    font-weight: 700 !important;
}

/* Team Hub Navigation for Schedule - Override old styles */
.team-hub-navigation {
    margin-bottom: 2rem !important;
}

.team-hub-nav {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.team-hub-nav .nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500 !important;
    padding: 0.8rem 1.5rem !important;
    border: none !important;
    border-bottom: 3px solid transparent !important;
    transition: all 0.3s ease !important;
    margin-right: 0.5rem !important;
    background: transparent !important;
}

.team-hub-nav .nav-link.active,
.team-hub-nav .nav-link:hover {
    color: var(--bs-primary) !important;
    background: transparent !important;
    border-bottom-color: var(--bs-primary) !important;
}

/* Availability Sheet Styles - Match website form controls */
.availability-cell {
    position: relative !important;
    padding: 0.5rem !important;
}

.availability-select {
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    background: rgba(30, 30, 30, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    -webkit-backdrop-filter: blur(10px) !important;
    backdrop-filter: blur(10px) !important;
}

.availability-select:hover {
    border-color: rgba(255, 159, 28, 0.3) !important;
    background: rgba(30, 30, 30, 0.9) !important;
}

.availability-select:focus {
    border-color: rgba(255, 159, 28, 0.5) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 159, 28, 0.1) !important;
    outline: none !important;
    background: rgba(30, 30, 30, 0.9) !important;
}

/* Player Avatar - Override old styles */
.player-avatar {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #2196F3, #1976D2) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    flex-shrink: 0 !important;
}

.player-avatar.current-user {
    border: 2px solid #ff9f1c !important;
    box-shadow: 0 0 10px rgba(255, 159, 28, 0.5) !important;
}

.player-name-cell {
    cursor: pointer !important;
    transition: background-color 0.2s ease !important;
}

.player-name-cell:hover {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

/* Hub Card Styling - Match website exactly */
.hub-card {
    background: rgba(18, 18, 18, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    -webkit-backdrop-filter: blur(10px) !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

.hub-card:hover {
    border-color: rgba(255, 159, 28, 0.3) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3) !important;
}

.hub-card-header {
    padding: 1.5rem 1.5rem 1rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: transparent !important;
    -webkit-backdrop-filter: blur(8px) !important;
    backdrop-filter: blur(8px) !important;
    box-shadow: none !important;
}

.hub-card-header .header-icon {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #ff9f1c, #ffb347) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 1.25rem !important;
    box-shadow: 0 4px 12px rgba(255, 159, 28, 0.3) !important;
}

.hub-card-header h4,
.hub-card-header h5 {
    margin: 0 !important;
    color: #fff !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
}

.hub-card-content {
    padding: 1.5rem !important;
    background: transparent !important;
    max-height: 1200px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

/* Fixed height calendar container to ensure all days are visible */
.hub-card-content .calendar-month-grid {
    max-height: 950px !important;
}

.hub-card-content .calendar-month-days {
    min-height: min-content;

}

/* Fixed height for month day cells */
.calendar-month-day {
    max-height: 150px !important;
    overflow: hidden !important;
}

/* Show max 3 events then show +more indicator */
.calendar-month-day-events {
    max-height: 85px !important;
    overflow: hidden !important;
}

.hub-card-content .table-responsive {
    background: transparent !important;
}

.hub-card-content .table-responsive .table {
    background: transparent !important;
}

/* Schedule Grid Table - Match Performance Center styling */
.schedule-grid {
    margin-bottom: 0 !important;
    background: transparent !important;
    color: #e2e8f0 !important;
}

.schedule-grid thead th {
    border-color: rgba(255, 255, 255, 0.08) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    font-size: 0.78rem !important;
    color: rgba(248, 250, 252, 0.64) !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    font-weight: 600 !important;
    padding: 1rem !important;
    vertical-align: middle !important;
    display: table-cell !important;
}

/* Day header cells with buttons - center content vertically */
.schedule-grid thead th:not(:first-child):not(:last-child) {
    vertical-align: middle !important;
    text-align: center !important;
}

.schedule-grid thead th:not(:first-child):not(:last-child)>* {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.25rem !important;
}

/* Actions column header styling */
.schedule-grid thead th:last-child {
    text-align: center !important;
    min-width: 80px !important;
}

/* Actions column cell styling */
.schedule-grid tbody td:last-child {
    text-align: center !important;
    vertical-align: middle !important;
}

.schedule-grid tbody tr {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
    transition: all 0.2s ease !important;
}

.schedule-grid tbody tr:hover {
    background: rgba(255, 255, 255, 0.03) !important;
}

.schedule-grid tbody tr:hover td {
    background: rgba(255, 255, 255, 0.03) !important;
}

.schedule-grid tbody td {
    border-color: rgba(255, 255, 255, 0.04) !important;
    vertical-align: middle !important;
    color: #e2e8f0 !important;
    background: transparent !important;
    padding: 1rem !important;
    border: none !important;
}

.schedule-grid tbody tr:last-child {
    border-bottom: none !important;
}

/* Calendar Grid Styles - Override old styles */
.calendar-container {
    margin-top: 1rem !important;
    width: 100% !important;
}

/* Schedule Week Table - Match Performance Center styling */
.schedule-week-table {
    margin-bottom: 0 !important;
    background: transparent !important;
    width: 100% !important;
    color: #e2e8f0 !important;
    table-layout: fixed !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
}

/* Team Hub Style Calendar */
.schedule-week-table.team-hub-style,
.schedule-week-table {
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Week number and first day header */
.calendar-time-header.team-hub-style {
    background: rgba(255, 255, 255, 0.03) !important;
    padding: 0.5rem !important;
    text-align: center !important;
    vertical-align: middle !important;
}

.calendar-time-header.team-hub-style .week-number-label {
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 0.25rem !important;
}

.calendar-time-header.team-hub-style .first-day-label {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    white-space: nowrap !important;
}

/* Day header cells - Team Hub style */
.calendar-week-header.team-hub-style {
    background: rgba(255, 255, 255, 0.03) !important;
    padding: 0.75rem 0.5rem !important;
    text-align: center !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    transition: all 0.2s ease !important;
}

.calendar-week-header.team-hub-style .day-short {
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.calendar-week-header.team-hub-style .day-num {
    font-weight: 700 !important;
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Today highlight - Light yellow/cream like Team Hub */
.calendar-week-header.team-hub-style.today-highlight {
    background: rgba(255, 235, 153, 0.25) !important;
    border-color: rgba(255, 235, 153, 0.4) !important;
}

.calendar-week-header.team-hub-style.today-highlight .day-short,
.calendar-week-header.team-hub-style.today-highlight .day-num {
    color: #fffacd !important;
}

/* Today highlight for cells (entire column) */
.calendar-week-cell.team-hub-style.today-highlight-cell {
    background: rgba(255, 235, 153, 0.08) !important;
    border-color: rgba(255, 235, 153, 0.15) !important;
}

/* Week cell styling - Team Hub style */
.calendar-week-cell.team-hub-style {
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    background: transparent !important;
    transition: background 0.15s ease !important;
}

.calendar-week-cell.team-hub-style:hover {
    background: rgba(255, 255, 255, 0.03) !important;
}

.schedule-week-container {
    overflow-x: auto !important;
    overflow-y: auto !important;
    max-height: calc(100vh - 300px) !important;
}

/* Time column styling - Team Hub style */
.calendar-time-header {
    background: rgba(255, 255, 255, 0.05) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
    position: sticky !important;
    left: 0 !important;
    z-index: 10 !important;
    width: 80px !important;
    min-width: 80px !important;
}

.calendar-time-slot {
    background: rgba(255, 255, 255, 0.02) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
    position: sticky !important;
    left: 0 !important;
    z-index: 5 !important;
    width: 80px !important;
    min-width: 80px !important;
    text-align: right !important;
    padding-right: 0.75rem !important;
    padding-left: 0.5rem !important;
    vertical-align: top !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
}

.time-slot-label {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 500 !important;
    padding-top: 0.25rem !important;
    font-family: 'Segoe UI', system-ui, sans-serif !important;
}

/* Events overlay container */
.events-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    pointer-events: none !important;
    z-index: 5 !important;
    overflow: visible !important;
}

.events-overlay>div {
    pointer-events: auto !important;
}

/* Event item styling for overlay positioning */
.calendar-week-event-item {
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    min-height: 24px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

.calendar-week-event-item:hover {
    transform: scale(1.02) translateX(2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
    z-index: 20 !important;
}

/* Week cell styling */
.calendar-week-cell.team-hub-style {
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    background: transparent !important;
    transition: background 0.15s ease !important;
}

.calendar-week-cell.team-hub-style:hover {
    background: rgba(255, 255, 255, 0.03) !important;
}

/* Schedule week container for overlay */
.schedule-week-container {
    position: relative !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
}

/* Time scale selector styling */
#timeScaleSelector,
#timeStartSelector {
    background: rgba(30, 30, 30, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    padding: 0.375rem 0.75rem !important;
    border-radius: 0.375rem !important;
    transition: all 0.2s ease !important;
}

#timeScaleSelector:hover,
#timeStartSelector:hover {
    border-color: rgba(255, 159, 28, 0.3) !important;
    background: rgba(30, 30, 30, 0.9) !important;
}

#timeScaleSelector:focus,
#timeStartSelector:focus {
    border-color: rgba(255, 159, 28, 0.5) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 159, 28, 0.1) !important;
    outline: none !important;
    background: rgba(30, 30, 30, 0.9) !important;
}

/* Event summary button in Availability Sheet */
.event-summary-btn {
    background: linear-gradient(135deg, rgba(255, 159, 28, 0.15), rgba(255, 179, 60, 0.1)) !important;
    border: 1px solid rgba(255, 159, 28, 0.4) !important;
    color: rgba(255, 159, 28, 1) !important;
    transition: all 0.3s ease !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    padding: 0.5rem 0.75rem !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin: 0 auto !important;
    vertical-align: middle !important;
}

.event-summary-btn i {
    font-size: 1.75rem !important;
}

.event-summary-btn:hover {
    background: linear-gradient(135deg, rgba(255, 159, 28, 0.25), rgba(255, 179, 60, 0.15)) !important;
    border-color: rgba(255, 159, 28, 0.6) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(255, 159, 28, 0.4) !important;
    color: rgba(255, 159, 28, 1) !important;
}

.event-summary-btn:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 6px rgba(255, 159, 28, 0.3) !important;
}

.event-summary-btn .badge {
    font-size: 0.7rem !important;
    padding: 0.25rem 0.5rem !important;
    background: rgba(255, 159, 28, 0.3) !important;
    color: rgba(255, 159, 28, 1) !important;
    border: 1px solid rgba(255, 159, 28, 0.5) !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
}

/* Actions button (unselect player) styling */
.unselect-player-btn {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.15), rgba(248, 108, 123, 0.1)) !important;
    border: 1px solid rgba(220, 53, 69, 0.4) !important;
    color: rgba(220, 53, 69, 1) !important;
    transition: all 0.3s ease !important;
    font-size: 0.85rem !important;
    padding: 0.4rem 0.6rem !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    width: 36px !important;
    height: 36px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.unselect-player-btn i {
    font-size: 1.75rem !important;
}

.unselect-player-btn:hover {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.25), rgba(248, 108, 123, 0.15)) !important;
    border-color: rgba(220, 53, 69, 0.6) !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4) !important;
    color: rgba(220, 53, 69, 1) !important;
}

.unselect-player-btn:active {
    transform: translateY(0) scale(1) !important;
    box-shadow: 0 2px 6px rgba(220, 53, 69, 0.3) !important;
}

/* Day events modal styling */
#dayEventsModal .modal-dialog {
    margin: 1.75rem auto !important;
    max-width: 600px !important;
}

#dayEventsModal .modal-content {
    max-height: 85vh !important;
    display: flex !important;
    flex-direction: column !important;
}

#dayEventsModal .modal-body {
    flex: 1 1 auto !important;
    overflow-y: auto !important;
    max-height: calc(85vh - 120px) !important;
}

.day-event-item {
    transition: all 0.2s ease !important;
    cursor: pointer !important;
}

.day-event-item:hover {
    transform: translateX(4px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    border-color: rgba(255, 159, 28, 0.3) !important;
}

.event-description {
    line-height: 1.6 !important;
    white-space: pre-wrap !important;
}

.schedule-week-table thead th {
    border-color: rgba(255, 255, 255, 0.08) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    font-size: 0.78rem !important;
    color: rgba(248, 250, 252, 0.64) !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    font-weight: 600 !important;
    padding: 1rem 0.75rem !important;
    min-width: 120px !important;
    vertical-align: top !important;
}

.schedule-week-table tbody tr {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
}

.schedule-week-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03) !important;
}

.schedule-week-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.03) !important;
}

.schedule-week-table tbody td {
    border-color: rgba(255, 255, 255, 0.04) !important;
    vertical-align: top !important;
    background: transparent !important;
    padding: 1rem 0.75rem !important;
    min-height: 200px !important;
    color: #e2e8f0 !important;
    border: none !important;
}

.calendar-week-header.today {
    border-color: rgba(255, 159, 28, 0.5) !important;
    background: rgba(255, 159, 28, 0.1) !important;
}

.calendar-week-header:hover {
    background: rgba(255, 255, 255, 0.05) !important;
}

.calendar-week-cell:hover {
    background: rgba(255, 255, 255, 0.03) !important;
}

.calendar-week-event,
.calendar-week-event-item {
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.calendar-week-event:hover,
.calendar-week-event-item:hover {
    transform: translateX(2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    z-index: 10 !important;
}

/* Event extending styles */
.calendar-week-event-item {
    min-height: 24px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

.calendar-grid {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    gap: 0.75rem !important;
    width: 100% !important;
    min-width: 1000px !important;
}

.calendar-day-column {
    background: rgba(30, 30, 30, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    padding: 0.5rem !important;
    height: 200px !important;
    max-height: 200px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
    cursor: pointer !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
}

.calendar-day-column:hover {
    background: rgba(30, 30, 30, 0.95) !important;
    border-color: rgba(255, 159, 28, 0.3) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3) !important;
}

.calendar-day-column.today {
    border-color: rgba(255, 159, 28, 0.5) !important;
    box-shadow: 0 0 20px rgba(255, 159, 28, 0.3) !important;
}

.clickable-day-header {
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    padding: 0.5rem !important;
    border-radius: 6px !important;
}

.clickable-day-header:hover {
    background: rgba(255, 255, 255, 0.05) !important;
}

.calendar-day-header {
    text-align: center !important;
    padding-bottom: 0.35rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin-bottom: 0.35rem !important;
    flex-shrink: 0 !important;
}

.calendar-day-header .fw-bold {
    color: #fff !important;
    font-size: 0.9rem !important;
    line-height: 1.2 !important;
}

.calendar-day-header .small {
    font-size: 0.75rem !important;
    line-height: 1 !important;
}

.calendar-day-events {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.25rem !important;
    flex-grow: 1 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    min-height: 0 !important;
    max-height: calc(200px - 80px) !important;
}

.calendar-event-item {
    padding: 0.35rem 0.4rem !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    flex-shrink: 0 !important;
    margin-bottom: 0 !important;
}

.calendar-event-item:hover {
    transform: translateX(2px) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.calendar-event-item .event-time {
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.1rem !important;
    opacity: 0.9 !important;
    line-height: 1 !important;
}

.calendar-event-item .event-title {
    font-weight: 600 !important;
    font-size: 0.7rem !important;
    margin-bottom: 0.1rem !important;
    line-height: 1.1 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.calendar-event-item .event-type-badge {
    font-size: 0.6rem !important;
    padding: 0.1rem 0.25rem !important;
    border-radius: 3px !important;
    display: inline-block !important;
    margin-top: 0.1rem !important;
    line-height: 1 !important;
}

/* Upcoming Events - Match website card styling */
.upcoming-event-item {
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    padding: 0.75rem 1rem !important;
    margin-bottom: 0.5rem !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.upcoming-event-item:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 159, 28, 0.4) !important;
    transform: translateX(4px) !important;
    box-shadow: 0 4px 16px rgba(255, 159, 28, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

/* Upcoming Events List - Scrollable container */
#upcomingEventsList {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 159, 28, 0.3) rgba(255, 255, 255, 0.1);
}

#upcomingEventsList::-webkit-scrollbar {
    width: 6px;
}

#upcomingEventsList::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

#upcomingEventsList::-webkit-scrollbar-thumb {
    background: rgba(255, 159, 28, 0.3);
    border-radius: 10px;
}

#upcomingEventsList::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 159, 28, 0.5);
}

/* Status Classes - Override old styles */
.status-unselected {
    background-color: rgba(255, 255, 255, 0.05) !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

.status-cannot_make {
    background-color: rgba(244, 67, 54, 0.2) !important;
    color: #f44336 !important;
}

.status-block_024cest {
    background-color: rgba(76, 175, 80, 0.2) !important;
    color: #4caf50 !important;
}

.status-block_12cest,
.status-block_14cest,
.status-block_16cest,
.status-block_18cest,
.status-block_20cest,
.status-block_21cest {
    background-color: rgba(33, 150, 243, 0.2) !important;
    color: #2196f3 !important;
}

.status-both_blocks {
    background-color: rgba(156, 39, 176, 0.2) !important;
    color: #9c27b0 !important;
}

.availability-select.status-unselected {
    background-color: rgba(255, 255, 255, 0.05) !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

.availability-select.status-cannot_make {
    background-color: rgba(244, 67, 54, 0.2) !important;
    color: #f44336 !important;
}

.availability-select.status-block_024cest {
    background-color: rgba(76, 175, 80, 0.2) !important;
    color: #4caf50 !important;
}

.availability-select.status-block_12cest,
.availability-select.status-block_14cest,
.availability-select.status-block_16cest,
.availability-select.status-block_18cest,
.availability-select.status-block_20cest,
.availability-select.status-block_21cest {
    background-color: rgba(33, 150, 243, 0.2) !important;
    color: #2196f3 !important;
}

.availability-select.status-both_blocks {
    background-color: rgba(156, 39, 176, 0.2) !important;
    color: #9c27b0 !important;
}

/* Schedule Calendar View Selector - Remove yellow border, add spacing, smaller border */
.btn-group[role="group"] {
    gap: 0.5rem !important;
    display: flex !important;
}

.btn-group[role="group"] .btn-outline-primary {
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 0.5rem 1rem !important;
    margin: 0 !important;
    transition: all 0.2s ease !important;
}

.btn-group[role="group"] .btn-outline-primary:hover {
    border-color: rgba(255, 159, 28, 0.4) !important;
    background: rgba(255, 159, 28, 0.1) !important;
    color: rgba(255, 159, 28, 1) !important;
}

.btn-group[role="group"] .btn-check:checked+.btn-outline-primary {
    border: 1px solid rgba(255, 159, 28, 0.6) !important;
    background: rgba(255, 159, 28, 0.15) !important;
    color: rgba(255, 159, 28, 1) !important;
    box-shadow: 0 0 0 1px rgba(255, 159, 28, 0.3) !important;
}

/* Modern Table - Match website table styling */
.modern-table {
    border-collapse: collapse !important;
    border-spacing: 0 !important;
}

.modern-table.table-bordered {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.modern-table.table-bordered th,
.modern-table.table-bordered td {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* To-Do List Styling */
.todo-item {
    background: rgba(18, 18, 18, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
    min-height: 48px;
}

.todo-item:hover {
    background: rgba(18, 18, 18, 0.4) !important;
    border-color: rgba(255, 159, 28, 0.3) !important;
    transform: translateX(2px);
}

.todo-item.completed {
    opacity: 0.65;
    background: rgba(18, 18, 18, 0.2) !important;
}

.todo-item.completed span {
    text-decoration: line-through !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

.todo-item .form-check-input {
    cursor: pointer;
    margin-top: 0;
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0;
}

.todo-item .form-check-input:checked {
    background-color: rgba(255, 159, 28, 0.8) !important;
    border-color: rgba(255, 159, 28, 1) !important;
}

.todo-item span {
    user-select: none;
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: break-word;
    padding: 2px 0;
}

.todo-item .btn-outline-danger {
    border-color: rgba(255, 107, 107, 0.4) !important;
    color: rgba(255, 107, 107, 0.9) !important;
    padding: 0.2rem 0.4rem !important;
    min-width: auto !important;
    flex-shrink: 0;
    font-size: 0.85em;
    transform: scale(0.85);
}

.todo-item .btn-outline-danger i {
    font-size: 0.9em;
}

.todo-item .btn-primary {
    transform: scale(0.85);
    font-size: 0.85em;
}

.todo-item .btn-sm {
    padding: 0.2rem 0.4rem;
}

/* Repeating event indicator */
.repeating-event {
    position: relative;
}

/* Allow custom colors to override default styles for repeating events */
.calendar-month-event.repeating-event[style*="background-color"],
.calendar-week-event-item.repeating-event[style*="background-color"] {
    background: var(--custom-bg, inherit) !important;
    color: var(--custom-text, inherit) !important;
}

.repeating-event::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: rgba(255, 159, 28, 0.6);
}

.todo-item .btn-outline-danger:hover {
    background-color: rgba(255, 107, 107, 0.2) !important;
    border-color: rgba(255, 107, 107, 0.6) !important;
    color: rgba(255, 107, 107, 1) !important;
    background: rgba(255, 107, 107, 0.2) !important;
    border-color: rgba(255, 107, 107, 0.5) !important;
    color: #ff6b6b !important;
}

/* Event Details Modal */
.event-details-modal-body {
    color: #fff;
}

.event-details-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-right: 0.5rem;
}

.event-details-description {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

/* Calendar Month View - Override old styles */
.calendar-month-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
}

.calendar-month-header {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    gap: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.calendar-month-day-header {
    text-align: center !important;
    font-weight: 600 !important;
    padding: 0.75rem 0.5rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.875rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 8px !important;
}

.calendar-month-days {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    gap: 0.5rem !important;
}

.calendar-month-day {
    background: rgba(18, 18, 18, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 0.75rem !important;
    min-height: 100px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.calendar-month-day:not(.empty):hover {
    background: rgba(18, 18, 18, 0.4) !important;
    border-color: rgba(255, 159, 28, 0.3) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.calendar-month-day:hover {
    background: rgba(18, 18, 18, 0.4) !important;
    border-color: rgba(255, 159, 28, 0.3) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.calendar-month-day.empty {
    background: transparent;
    border: none;
    cursor: default;
}

.calendar-month-day.today {
    border-color: rgba(255, 159, 28, 0.5);
    box-shadow: 0 0 15px rgba(255, 159, 28, 0.2);
}

.calendar-month-day-number {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.calendar-month-day-events {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.calendar-month-event {
    font-size: 0.75rem !important;
    padding: 0.35rem 0.5rem !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.2s ease !important;
    margin-bottom: 0.25rem !important;
    max-width: 100% !important;
}

/* Override text-dark for bg-info events (Scrim and Team Meeting) to use white text */
.calendar-month-event.bg-info.text-dark,
.calendar-month-event.bg-info {
    color: #ffffff !important;
}

/* Event tag text truncation - max 10 characters visible */
.calendar-month-event .event-title,
.calendar-month-event span,
.calendar-month-event {
    max-width: 100% !important;
    display: inline-block !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.calendar-month-event:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 159, 28, 0.3) !important;
    transform: translateX(2px) !important;
}

.calendar-month-event-more {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 0.25rem;
}

/* Calendar Year View - Match website card styling */
.calendar-year-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 1rem !important;
}

.calendar-year-month {
    background: rgba(30, 30, 30, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    padding: 1rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
    overflow: hidden !important;
}

.calendar-year-month:hover {
    background: rgba(30, 30, 30, 0.95) !important;
    border-color: rgba(255, 159, 28, 0.3) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3) !important;
}

.calendar-year-month-header {
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    margin-bottom: 0.75rem !important;
    padding-bottom: 0.75rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    letter-spacing: 0.5px !important;
}

.calendar-year-month-events {
    min-height: 150px;
}

.calendar-year-month-days {
    margin-top: 0.75rem;
}

.calendar-year-weekdays {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    gap: 0.25rem !important;
    margin-bottom: 0.5rem !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    text-align: center !important;
}

.calendar-year-days-grid {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    gap: 0.2rem !important;
}

.calendar-year-day {
    aspect-ratio: 1 !important;
    background: rgba(18, 18, 18, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    padding: 0.2rem !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    min-height: 30px !important;
    font-size: 0.85em !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.calendar-year-day:hover {
    background: rgba(18, 18, 18, 0.25) !important;
    border-color: rgba(255, 159, 28, 0.3) !important;
    transform: scale(1.05) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

.calendar-year-day.today {
    border-color: rgba(255, 159, 28, 0.5) !important;
    box-shadow: 0 0 10px rgba(255, 159, 28, 0.3) !important;
    background: rgba(255, 159, 28, 0.1) !important;
}

.calendar-year-day.has-events {
    border-color: rgba(33, 150, 243, 0.4) !important;
}

.calendar-year-day.empty {
    background: transparent !important;
    border: none !important;
    cursor: default !important;
}

.calendar-year-day-number {
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: #fff !important;
    line-height: 1 !important;
}

.calendar-year-day-indicator {
    width: 3px !important;
    height: 3px !important;
    border-radius: 50% !important;
    background: rgba(33, 150, 243, 0.8) !important;
    margin-top: 1px !important;
}

.calendar-year-event-count {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.calendar-year-event-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calendar-year-event-item {
    font-size: 0.85rem;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calendar-year-event-item:hover {
    transform: translateX(4px);
}

.calendar-year-event-more {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 0.5rem;
}

/* Player Selection Modal - Override old styles */
.player-selection-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
    gap: 0.75rem !important;
    padding: 0.5rem !important;
}

.player-selection-item {
    background: rgba(30, 30, 30, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 0.75rem !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.player-selection-item:hover {
    background: rgba(30, 30, 30, 0.95) !important;
    border-color: rgba(255, 159, 28, 0.3) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.player-selection-item.selected {
    background: rgba(255, 159, 28, 0.15) !important;
    border-color: rgba(255, 159, 28, 0.5) !important;
    box-shadow: 0 4px 12px rgba(255, 159, 28, 0.2) !important;
}

.player-selection-item .form-check {
    margin: 0;
}

.player-selection-item .form-check-label {
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
}

.player-avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2196F3, #1976D2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Remove duplicate - already defined above */

/* Responsive adjustments */
@media (max-width: 992px) {
    .col-lg-9 {
        order: -1;
    }

    #statsPanel {
        margin-bottom: 1.5rem;
    }

    .hero-cell .hero-name {
        display: none;
    }

    .selected-hero {
        justify-content: center;
    }

    #heroPickerModal .modal-dialog {
        max-width: 95%;
        margin: 1rem auto;
    }

    .hero-grid-item {
        min-height: 50px;
    }

    .hero-select-card img {
        width: 32px !important;
        height: 32px !important;
    }

    .calendar-grid {
        grid-template-columns: 1fr;
    }

    .calendar-day-column {
        min-height: 200px;
    }

    .calendar-month-days {
        grid-template-columns: repeat(7, 1fr);
        gap: 0.25rem;
    }

    .calendar-month-day {
        min-height: 80px;
        padding: 0.5rem;
    }

    .calendar-year-grid {
        grid-template-columns: 1fr;
    }

    .player-selection-grid {
        grid-template-columns: 1fr;
    }

    .schedule-grid {
        font-size: 0.85rem;
    }

    .player-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .team-hub-nav .nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .schedule-grid thead th {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }

    .availability-select {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
}

/* --- NOVA SCHEDULE PAGE UPGRADE --- */
.glass-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: all 0.3s;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.calendar-table {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.calendar-table th,
.calendar-table td {
    text-align: center;
    padding: 0.6em 0.2em;
    font-weight: 600;
    font-size: 1.05em;
    border: none;
    background: transparent;
    transition: background 0.2s, color 0.2s;
}

.calendar-day {
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.calendar-day.today {
    background: var(--gradient-primary);
    color: var(--text-on-accent);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 159, 28, 0.12);
}

.calendar-day.selected {
    background: var(--gradient-accent);
    color: var(--accent-primary);
    font-weight: 700;
    border: 2px solid var(--accent-primary);
}

.calendar-day.has-event::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-primary);
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 6px var(--accent-primary);
}

.calendar-day:hover {
    background: var(--gradient-primary);
    color: var(--text-on-accent);
    box-shadow: 0 2px 8px rgba(255, 159, 28, 0.18);
}

.selected-day-panel {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.selected-day-panel h6 {
    font-weight: 700;
    color: var(--accent-primary);
}

.selected-day-panel .list-group-item {
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-radius: 8px;
    margin-bottom: 0.3em;
    transition: background 0.2s;
}

.selected-day-panel .list-group-item:hover {
    background: var(--gradient-accent);
    color: var(--accent-primary);
}

.schedule-card {
    background: rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: var(--border-radius) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
    margin-bottom: 2rem;
}

/* Schedule table styling */
.schedule-grid {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
}

.schedule-grid thead th {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    color: rgba(248, 250, 252, 0.64) !important;
    font-weight: 600;
    padding: 1rem 0.5rem;
}

.schedule-grid tbody td {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.04) !important;
    color: #e2e8f0 !important;
    padding: 0.75rem 0.5rem;
    vertical-align: middle;
}

/* Remove player button styling */
.remove-player-btn {
    background: linear-gradient(135deg, #dc3545, #c82333) !important;
    border: none !important;
    color: white !important;
    font-size: 0.4rem !important;
    padding: 0.05rem 0.1rem !important;
    border-radius: 0 !important;
    font-weight: 200 !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 4px rgba(220, 35, 69, 0.2) !important;
    min-width: auto !important;
    width: auto !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 20px !important;
    width: 20px !important;
    transform: none !important;
    flex-shrink: 0 !important;
}

.remove-player-btn:hover {
    background: linear-gradient(135deg, #c82333, #bd2130) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 8px rgba(220, 35, 69, 0.3) !important;
    color: white !important;
}

.remove-player-btn:active {
    transform: translateY(0) !important;
    box-shadow: 0 1px 2px rgba(220, 35, 69, 0.4) !important;
}

/* Nova-style for selects in schedule table */
.availability-select {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.13);
    color: var(--text-primary) !important;
    font-weight: 600;
    transition: border 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
    padding: 0.375rem 0.75rem !important;
    font-size: 0.875rem !important;
}

.availability-select option {
    background: rgba(0, 0, 0, 0.9) !important;
    color: var(--text-primary) !important;
    padding: 0.5rem !important;
}

.availability-select option:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.availability-select:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px rgba(255, 159, 28, 0.13);
    background: rgba(255, 255, 255, 0.15) !important;
    color: var(--text-primary) !important;
}

/* Nova event badge */
.event-badge {
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95em;
    background: var(--gradient-primary);
    color: var(--text-on-accent) !important;
    box-shadow: 0 2px 8px rgba(255, 159, 28, 0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.event-badge:hover {
    background: var(--gradient-accent);
    color: var(--accent-primary) !important;
    box-shadow: 0 2px 12px rgba(46, 196, 182, 0.13);
}

/* Nova player avatar and name cell */
.player-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--text-on-accent);
    font-weight: 700;
    font-size: 0.9em;
    box-shadow: 0 2px 6px rgba(255, 159, 28, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.13);
    transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
    flex-shrink: 0;
    margin-top: 2px;
}

.player-avatar.current-user {
    border-color: var(--accent-secondary);
    box-shadow: 0 0 0 2px var(--accent-secondary), 0 2px 8px rgba(46, 196, 182, 0.2);
}

.player-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 159, 28, 0.25);
}

.player-name-cell {
    cursor: pointer;
    transition: background-color 0.2s;
    border-radius: 8px;
    margin: 2px 0;
    min-width: 140px;
}

.player-name-cell:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.player-name-cell .player-name {
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.player-name-cell:hover .player-name {
    color: var(--accent-primary);
}

/* Nova sticky action buttons */
.sticky-action-btn {
    position: relative;
    z-index: 2;
    margin-right: 0.5em;
    margin-bottom: 0.5em;
    box-shadow: 0 2px 8px rgba(255, 159, 28, 0.10);
    border-radius: 8px;
    font-weight: 600;
    transition: box-shadow 0.2s, background 0.2s;
}

.sticky-action-btn:hover {
    background: var(--gradient-primary);
    color: var(--text-on-accent);
    box-shadow: 0 4px 16px rgba(255, 159, 28, 0.18);
}

/* Responsive Nova grid for schedule */
@media (max-width: 992px) {
    .dashboard-modern .d-flex.flex-wrap {
        flex-direction: column;
        gap: 1.5rem;
    }

    .glass-card {
        min-width: 100% !important;
        max-width: 100% !important;
    }
}

/* Nova fadeInUp animation (if not already present) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate__fadeInUp {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Event Countdown Card */
.event-countdown-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 28px 18px 22px 18px;
    min-width: 260px;
    max-width: 340px;
    margin-left: 12px;
    margin-bottom: 18px;
    position: relative;
}

.event-countdown-card .countdown-title {
    font-size: 1.1em;
    font-weight: 600;
    color: #ede4e4;
    margin-bottom: 8px;
}

.event-countdown-card .countdown-time {
    font-size: 2.2em;
    font-weight: bold;
    color: #ff5252;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.event-countdown-card .countdown-event-title {
    font-size: 1.05em;
    color: #444;
    margin-bottom: 2px;
    text-align: center;
}

.event-countdown-card .countdown-event-time {
    font-size: 0.98em;
    color: #888;
    margin-bottom: 0;
}

/* 10-Weeks View Styles */
.calendar-10weeks-container {
    padding: 1rem;
}

.week-block {
    background: rgba(18, 18, 18, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 1rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
    height: 200px;
    display: flex;
    flex-direction: column;
}

.week-block:hover {
    background: rgba(18, 18, 18, 0.4) !important;
    border-color: rgba(255, 159, 28, 0.3) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3) !important;
}

.week-block.has-events {
    border-color: rgba(255, 159, 28, 0.5) !important;
}

.week-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.week-number {
    font-weight: 700;
    color: #ff9f1c;
    display: block;
    font-size: 1.1rem;
}

.week-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    display: block;
}

.week-events {
    overflow-y: auto;
    flex-grow: 1;
}

.week-event {
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.week-event:hover {
    transform: translateX(2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.week-event .event-time {
    font-size: 0.65rem;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 0.1rem;
}

.week-event .event-title {
    font-weight: 600;
    font-size: 0.7rem;
    margin-bottom: 0.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.week-event .event-type {
    font-size: 0.6rem;
    opacity: 0.8;
}

.more-events {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
}

/* Day View Styles */
.schedule-day-container {
    overflow-x: auto;
    overflow-y: auto;
    max-height: calc(100vh - 300px);
}

.schedule-day-table {
    margin-bottom: 0 !important;
    background: transparent !important;
    width: 100% !important;
    color: #e2e8f0 !important;
    table-layout: fixed !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
}

.schedule-day-table.team-hub-style,
.schedule-day-table {
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.calendar-day-header.team-hub-style {
    background: rgba(255, 255, 255, 0.03) !important;
    padding: 0.75rem 0.5rem !important;
    text-align: center !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    transition: all 0.2s ease !important;
}

.calendar-day-header.team-hub-style .day-full-name {
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Today highlight for day view */
.calendar-day-header.team-hub-style.today-highlight {
    background: rgba(255, 235, 153, 0.25) !important;
    border-color: rgba(255, 235, 153, 0.4) !important;
}

.calendar-day-header.team-hub-style.today-highlight .day-full-name {
    color: #fffacd !important;
}

/* Day cell styling */
.calendar-day-cell.team-hub-style {
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    background: transparent !important;
    transition: background 0.15s ease !important;
}

.calendar-day-cell.team-hub-style:hover {
    background: rgba(255, 255, 255, 0.03) !important;
}

/* Day view event item */
.calendar-day-event-item {
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    min-height: 24px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

.calendar-day-event-item:hover {
    transform: scale(1.02) translateX(2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
    z-index: 20 !important;
}

/* Day view time header */
.calendar-time-header.team-hub-style .day-label {
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 0.25rem !important;
}

.calendar-time-header.team-hub-style .date-label {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    white-space: nowrap !important;
}

/* Mini Calendar Styles */
.mini-calendar {
    width: 100%;
}

.mini-calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.mini-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}

.mini-calendar-header {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.25rem 0;
}

.mini-calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.mini-calendar-day:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 159, 28, 0.4);
}

.mini-calendar-day.today {
    background: rgba(255, 159, 28, 0.2);
    border-color: rgba(255, 159, 28, 0.6);
    font-weight: 700;
}

.mini-calendar-day.empty {
    background: transparent;
    border-color: transparent;
    cursor: default;
}

.mini-calendar-day.empty:hover {
    background: transparent;
    border-color: transparent;
}

.mini-calendar-day .day-number {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1;
}

.mini-calendar-day .event-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 159, 28, 0.8);
    font-size: 0.5rem;
}

/* Calendar Types Filter */
.calendar-types {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calendar-types .form-check {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.calendar-types .form-check-input {
    margin-right: 0.5rem;
    margin-top: 0;
}

.calendar-types .form-check-label {
    display: flex;
    align-items: center;
    width: 100%;
}

.calendar-types .badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.5rem;
}

/* ===== TEAMUP INTEGRATION STYLES ===== */

/* TeamUp Card */
.teamup-card {
    overflow: visible !important;
}

.teamup-card .hub-card-header {
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
}

/* TeamUp Icon in header */
.teamup-icon {
    background: linear-gradient(135deg, #f59e0b, #ea580c) !important;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35) !important;
}

/* Open in TeamUp button */
.teamup-open-btn {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(234, 88, 12, 0.1)) !important;
    border: 1px solid rgba(245, 158, 11, 0.4) !important;
    color: #fcd34d !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    text-decoration: none !important;
}

.teamup-open-btn:hover {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(234, 88, 12, 0.2)) !important;
    border-color: rgba(245, 158, 11, 0.7) !important;
    color: #fef3c7 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3) !important;
}

/* TeamUp content area */
.teamup-content {
    padding: 0 !important;
    max-height: none !important;
    overflow: visible !important;
}

/* Configuration card */
.teamup-config {
    padding: 1.25rem 1.5rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    background: rgba(255, 255, 255, 0.02) !important;
}

.teamup-config-inner {
    max-width: 800px;
}

.teamup-input-group {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: rgba(18, 18, 18, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    padding: 0.35rem 0.35rem 0.35rem 1rem !important;
    transition: all 0.3s ease !important;
}

.teamup-input-group:focus-within {
    border-color: rgba(245, 158, 11, 0.5) !important;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1) !important;
}

.teamup-input-icon {
    color: rgba(255, 255, 255, 0.35) !important;
    font-size: 0.9rem !important;
    flex-shrink: 0 !important;
}

.teamup-url-input {
    background: transparent !important;
    border: none !important;
    color: #e2e8f0 !important;
    padding: 0.5rem 0.25rem !important;
    font-size: 0.9rem !important;
    box-shadow: none !important;
    outline: none !important;
    flex: 1 !important;
    min-width: 0 !important;
}

.teamup-url-input::placeholder {
    color: rgba(255, 255, 255, 0.3) !important;
}

.teamup-url-input:focus {
    box-shadow: none !important;
    outline: none !important;
}

.teamup-save-btn {
    background: linear-gradient(135deg, #f59e0b, #ea580c) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    padding: 0.55rem 1.25rem !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

.teamup-save-btn:hover {
    background: linear-gradient(135deg, #d97706, #c2410c) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4) !important;
}

.teamup-save-btn:disabled {
    opacity: 0.7 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

.teamup-help-text {
    display: block !important;
    margin-top: 0.6rem !important;
    color: rgba(255, 255, 255, 0.35) !important;
    font-size: 0.8rem !important;
}

/* Iframe Wrapper */
.teamup-iframe-wrapper {
    position: relative !important;
    width: 100% !important;
    min-height: 700px !important;
    background: rgba(0, 0, 0, 0.15) !important;
}

.teamup-iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 700px !important;
    border: none !important;
    display: block !important;
    border-radius: 0 0 16px 16px !important;
}

/* Empty State */
.teamup-empty-state {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 4rem 2rem !important;
    min-height: 400px !important;
}

.teamup-empty-icon {
    width: 90px !important;
    height: 90px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(234, 88, 12, 0.1)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 1.5rem !important;
    animation: teamupPulse 3s ease-in-out infinite !important;
}

.teamup-empty-icon i {
    font-size: 2.25rem !important;
    color: #fcd34d !important;
}

@keyframes teamupPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(245, 158, 11, 0);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(245, 158, 11, 0.15);
    }
}

.teamup-empty-state h4 {
    color: #e2e8f0 !important;
    font-weight: 700 !important;
    margin-bottom: 0.75rem !important;
    font-size: 1.3rem !important;
}

.teamup-empty-state p {
    color: rgba(255, 255, 255, 0.45) !important;
    font-size: 0.95rem !important;
    max-width: 400px !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
}

.teamup-learn-btn {
    background: rgba(245, 158, 11, 0.12) !important;
    border: 1px solid rgba(245, 158, 11, 0.3) !important;
    color: #fcd34d !important;
    font-weight: 500 !important;
    font-size: 0.85rem !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.teamup-learn-btn:hover {
    background: rgba(245, 158, 11, 0.2) !important;
    border-color: rgba(245, 158, 11, 0.5) !important;
    color: #fef3c7 !important;
    transform: translateY(-2px) !important;
}

/* ===== TEAMUP RESPONSIVE ===== */

@media (max-width: 768px) {
    .teamup-card .hub-card-header {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .teamup-open-btn {
        width: 100% !important;
        text-align: center !important;
        margin-left: 0 !important;
    }

    .teamup-input-group {
        flex-direction: column !important;
        padding: 0.75rem !important;
        border-radius: 12px !important;
    }

    .teamup-input-icon {
        display: none !important;
    }

    .teamup-url-input {
        width: 100% !important;
        padding: 0.6rem 0.25rem !important;
    }

    .teamup-save-btn {
        width: 100% !important;
        padding: 0.65rem !important;
        border-radius: 8px !important;
    }

    .teamup-iframe-wrapper {
        min-height: 500px !important;
    }

    .teamup-iframe {
        min-height: 500px !important;
    }

    .teamup-empty-state {
        padding: 3rem 1.5rem !important;
        min-height: 300px !important;
    }

    .teamup-empty-icon {
        width: 70px !important;
        height: 70px !important;
    }

    .teamup-empty-icon i {
        font-size: 1.75rem !important;
    }

    .teamup-empty-state h4 {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    .teamup-iframe-wrapper {
        min-height: 400px !important;
    }

    .teamup-iframe {
        min-height: 400px !important;
    }

    .teamup-config {
        padding: 1rem !important;
    }
}