.dashboard-section {
    background: #2E2E33;
    padding: 5px 20px 20px 20px;
    border-radius: 0;
    box-shadow: none;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    flex-shrink: 0;
}

.dashboard-header h2 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1;
}

.hamburger-menu {
    position: relative;
}

.hamburger-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    z-index: 1001;
    transition: background-color 0.2s ease;
}

.hamburger-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.hamburger-btn span {
    width: 22px;
    height: 2.5px;
    background-color: #A0A0A8;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn:hover span {
    background-color: #00D9FF;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #2E2E33;
    border: 1px solid #3D3D42;
    border-radius: 6px;
    margin-top: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    min-width: 200px;
    z-index: 1000;
}

.dropdown-menu.show {
    display: block;
}

.menu-item {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: none;
    border: none;
    color: #A0A0A8;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.menu-item:hover {
    background-color: #3D3D42;
    color: #00D9FF;
}

.menu-item.active {
    color: #00D9FF;
    font-weight: 600;
}

.menu-item:first-child {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.menu-item:last-child {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.dev-grid-toggle-btn {
    padding: 6px 12px;
    background-color: #3D3D42;
    color: #A0A0A8;
    border: 2px solid #3D3D42;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 500px;
}

.dev-grid-toggle-btn:hover {
    background-color: #4A4A50;
    border-color: #00D9FF;
    color: #00D9FF;
}

.dashboard-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    flex: 1;
    min-height: 0;
}

.dashboard-sidebar {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background-color: #1A1A1D;
    padding: 16px 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    overflow-y: hidden;
    overflow-x: hidden;
    height: 100%;
    position: relative;
}

.sidebar-info-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 10px;
    height: 10px;
    background: #3D3D42;
    border: 1.5px solid #A0A0A8;
    color: #A0A0A8;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-info-btn svg {
    display: none;
}

.sidebar-info-btn::after {
    content: 'i';
    font-size: 8px;
    font-weight: bold;
    line-height: 1;
}

.sidebar-info-btn:hover {
    background: #4A4A50;
    border-color: #00D9FF;
    color: #00D9FF;
}

/* Filter Info Modal */
.filter-info-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    cursor: pointer;
}

.filter-info-content {
    background: #2E2E33;
    border: 2px solid #3D3D42;
    border-radius: 8px;
    padding: 24px;
    max-width: 550px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    cursor: default;
}

.filter-info-content h3 {
    margin: 0 0 16px 0;
    font-size: 18px;
    color: #E5E5E7;
    border-bottom: 1px solid #3D3D42;
    padding-bottom: 8px;
}

.filter-info-section {
    margin-bottom: 16px;
}

.filter-info-section h4 {
    margin: 0 0 8px 0;
    font-size: 13px;
    color: #00D9FF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-info-item {
    padding: 8px 10px;
    background: #1A1A1D;
    border-radius: 4px;
    border-left: 3px solid #4a9d9c;
    margin-bottom: 6px;
}

.filter-info-item .filter-name {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: #E5E5E7;
    margin-bottom: 3px;
}

.filter-info-item .filter-desc {
    display: block;
    font-size: 12px;
    color: #A0A0A8;
    line-height: 1.4;
}

.filter-info-close {
    display: block;
    width: 100%;
    margin-top: 16px;
    padding: 10px;
    background: #3D3D42;
    border: none;
    border-radius: 4px;
    color: #E5E5E7;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.filter-info-close:hover {
    background: #4a9d9c;
}

/* Histogram Info Modal */
.histogram-info-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    cursor: pointer;
}

.histogram-info-content {
    background: #2E2E33;
    border: 2px solid #3D3D42;
    border-radius: 8px;
    padding: 24px;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    cursor: default;
}

.histogram-info-content h3 {
    margin: 0 0 12px 0;
    font-size: 18px;
    color: #E5E5E7;
    border-bottom: 1px solid #3D3D42;
    padding-bottom: 8px;
}

.histogram-info-desc {
    font-size: 13px;
    color: #A0A0A8;
    margin-bottom: 16px;
    line-height: 1.5;
}

.histogram-info-section {
    margin-bottom: 16px;
}

.histogram-info-section h4 {
    margin: 0 0 8px 0;
    font-size: 13px;
    color: #00D9FF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.histogram-info-section p {
    font-size: 12px;
    color: #A0A0A8;
    line-height: 1.5;
    margin: 0 0 8px 0;
}

.histogram-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px;
    background: #1A1A1D;
    border-radius: 4px;
    margin-bottom: 4px;
}

.histogram-info-item .info-color {
    width: 14px;
    height: 14px;
    border-radius: 2px;
    flex-shrink: 0;
}

.histogram-info-item .info-label {
    font-weight: 600;
    font-size: 12px;
    color: #E5E5E7;
    min-width: 80px;
}

.histogram-info-item .info-text {
    font-size: 11px;
    color: #A0A0A8;
}

.histogram-info-close {
    display: block;
    width: 100%;
    margin-top: 16px;
    padding: 10px;
    background: #3D3D42;
    border: none;
    border-radius: 4px;
    color: #E5E5E7;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.histogram-info-close:hover {
    background: #4a9d9c;
}

/* Spider Info Modal */
.spider-info-modal,
.scatter-info-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    cursor: pointer;
}

.spider-info-content,
.scatter-info-content {
    background: #2E2E33;
    border: 2px solid #3D3D42;
    border-radius: 8px;
    padding: 24px;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    cursor: default;
}

.spider-info-content h3,
.scatter-info-content h3 {
    margin: 0 0 12px 0;
    font-size: 18px;
    color: #E5E5E7;
    border-bottom: 1px solid #3D3D42;
    padding-bottom: 8px;
}

.spider-info-desc,
.scatter-info-desc {
    font-size: 13px;
    color: #A0A0A8;
    margin-bottom: 16px;
    line-height: 1.5;
}

.spider-info-section,
.scatter-info-section {
    margin-bottom: 16px;
}

.spider-info-section h4,
.scatter-info-section h4 {
    margin: 0 0 8px 0;
    font-size: 13px;
    color: #00D9FF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.spider-info-section p,
.scatter-info-section p {
    font-size: 12px;
    color: #A0A0A8;
    line-height: 1.5;
    margin: 0 0 8px 0;
}

.spider-info-item,
.scatter-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px;
    background: #1A1A1D;
    border-radius: 4px;
    margin-bottom: 4px;
}

.spider-info-item .info-color,
.scatter-info-item .info-color {
    width: 14px;
    height: 14px;
    border-radius: 2px;
    flex-shrink: 0;
}

.spider-info-item .info-label,
.scatter-info-item .info-label {
    font-weight: 600;
    font-size: 12px;
    color: #E5E5E7;
    min-width: 100px;
}

.spider-info-item .info-text,
.scatter-info-item .info-text {
    font-size: 11px;
    color: #A0A0A8;
}

.spider-info-close,
.scatter-info-close {
    display: block;
    width: 100%;
    margin-top: 16px;
    padding: 10px;
    background: #3D3D42;
    border: none;
    border-radius: 4px;
    color: #E5E5E7;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.spider-info-close:hover,
.scatter-info-close:hover {
    background: #4a9d9c;
}

/* Goalkeeper Info Modals */
.gk-histogram-info-modal,
.dumbbell-info-modal,
.radial-info-modal,
.quadrant-info-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    cursor: pointer;
}

.gk-info-content {
    background: #2E2E33;
    border: 2px solid #3D3D42;
    border-radius: 8px;
    padding: 24px;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    cursor: default;
}

.gk-info-content h3 {
    margin: 0 0 12px 0;
    font-size: 18px;
    color: #E5E5E7;
    border-bottom: 1px solid #3D3D42;
    padding-bottom: 8px;
}

.gk-info-desc {
    font-size: 13px;
    color: #A0A0A8;
    margin-bottom: 16px;
    line-height: 1.5;
}

.gk-info-section {
    margin-bottom: 16px;
}

.gk-info-section h4 {
    margin: 0 0 8px 0;
    font-size: 13px;
    color: #00D9FF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gk-info-section p {
    font-size: 12px;
    color: #A0A0A8;
    line-height: 1.5;
    margin: 0 0 8px 0;
}

.gk-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px;
    background: #1A1A1D;
    border-radius: 4px;
    margin-bottom: 4px;
}

.gk-info-item .info-color {
    width: 14px;
    height: 14px;
    border-radius: 2px;
    flex-shrink: 0;
}

.gk-info-item .info-label {
    font-weight: 600;
    font-size: 12px;
    color: #E5E5E7;
    min-width: 100px;
}

.gk-info-item .info-text {
    font-size: 11px;
    color: #A0A0A8;
}

.dashboard-sidebar::-webkit-scrollbar {
    width: 3px;
}

.dashboard-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.dashboard-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.dashboard-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.dashboard-main {
    flex: 1;
    min-width: 0;
    position: relative;
    height: 100%;
    background-color: #1A1A1D;
}

.dev-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(15, 1fr);
    grid-template-rows: repeat(9, 1fr) 0.5fr;
    gap: 0;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.dev-grid-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.dev-grid-cell {
    border: 1px dashed rgba(0, 217, 255, 0.3);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2px;
    aspect-ratio: 1;
}

.dev-grid-cell.half-height {
    aspect-ratio: 2;
}

.dev-grid-cell span {
    background: rgba(0, 217, 255, 0.8);
    color: #1A1A1D;
    padding: 1px 4px;
    border-radius: 2px;
    font-size: 9px;
    font-weight: 700;
    font-family: monospace;
}

.game-selector {
    margin-bottom: 0;
    flex-shrink: 0;
}

.game-selector label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
}

.combobox-wrapper {
    position: relative;
    width: 100%;
}

.combobox-wrapper input {
    padding: 10px 32px 10px 12px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 300;
    width: 100%;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    cursor: text;
    box-sizing: border-box;
}

.combobox-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.combobox-wrapper input:hover {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.combobox-wrapper input:focus {
    outline: none;
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

.combobox-toggle {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.combobox-toggle:hover {
    color: rgba(255, 255, 255, 0.9);
}

.combobox-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 250px;
    overflow-y: auto;
    background-color: #1A1A1D;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: none;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 1000;
    display: none;
}

.combobox-dropdown.open {
    display: block;
}

.combobox-dropdown li {
    padding: 10px 12px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    transition: background-color 0.15s ease;
}

.combobox-dropdown li:hover,
.combobox-dropdown li.highlighted {
    background-color: rgba(74, 157, 156, 0.3);
}

.combobox-dropdown li.selected {
    background-color: rgba(74, 157, 156, 0.5);
}

.combobox-dropdown li.hidden {
    display: none;
}

.filters-section {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.filters-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-height: 0;
}

.filter-group {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.filter-group:first-child {
    flex: 1;
    min-height: 0;
}

.filter-group:not(:first-child) {
    margin-top: 0;
}

.filter-group label {
    margin-bottom: 6px;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.filter-group select {
    padding: 6px 10px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 300;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.filter-group select:hover {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.filter-group select:focus {
    outline: none;
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

.filter-group select option {
    background-color: #1A1A1D;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px;
}

.filter-group select option:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.dashboard-content #filter-shooter,
#filter-shooter {
    flex: 1 1 auto;
    min-height: 572px;
    max-height: 100%;
    height: 100%;
    font-size: 1.1rem !important;
    overflow-y: auto;
    background-color: #1A1A1D;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 8px;
    line-height: 1.6;
}

.dashboard-content #filter-shooter option,
#filter-shooter option {
    background-color: #1A1A1D;
    color: rgba(255, 255, 255, 0.9);
    padding: 2px 8px !important;
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
}

#filter-shooter option:checked {
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    font-weight: 500;
}

#filter-shooter option:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

#filter-shooter::-webkit-scrollbar {
    width: 3px;
}

#filter-shooter::-webkit-scrollbar-track {
    background: transparent;
}

#filter-shooter::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

#filter-shooter::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

#shooter-search {
    margin-bottom: 5px;
    width: 100%;
    padding: 8px 10px;
    box-sizing: border-box;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 300;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

#shooter-search::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

#shooter-search:hover {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

#shooter-search:focus {
    outline: none;
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

.toggle-button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.toggle-button-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.toggle-button {
    padding: 8px 12px;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.toggle-button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    width: 3px;
    background-color: rgba(255, 255, 255, 0.9);
    transition: height 0.3s ease;
}

.toggle-button:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

.toggle-button:hover::before {
    height: 100%;
}

.toggle-button.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.4);
}

.toggle-button.active::before {
    height: 100%;
}

.toggle-button[data-value="Goal"]::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent #7FB069 transparent transparent;
}

.toggle-button[data-value="Goal"]::before {
    background-color: #7FB069;
}

.toggle-button[data-value="Saved"]::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent #5B8DBE transparent transparent;
}

.toggle-button[data-value="Saved"]::before {
    background-color: #5B8DBE;
}

.toggle-button[data-value="Missed"]::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent #E8B44F transparent transparent;
}

.toggle-button[data-value="Missed"]::before {
    background-color: #E8B44F;
}

.toggle-button[data-value="Blocked"]::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent #E06B47 transparent transparent;
}

.toggle-button[data-value="Blocked"]::before {
    background-color: #E06B47;
}

.toggle-button.turnover-filter.active {
    background-color: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border-color: #22c55e;
}

.toggle-button.turnover-filter.active::before {
    background-color: #22c55e;
}

.toggle-button.turnover-filter.exclude {
    background-color: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border-color: #ef4444;
}

.toggle-button.turnover-filter.exclude::before {
    background-color: #ef4444;
}

.situation-filters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.toggle-button-small {
    padding: 6px 8px;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.toggle-button-small::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    width: 3px;
    background-color: rgba(255, 255, 255, 0.9);
    transition: height 0.3s ease;
}

.toggle-button-small:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

.toggle-button-small:hover::before {
    height: 100%;
}

.toggle-button-small.active {
    background-color: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border-color: #22c55e;
}

.toggle-button-small.active::before {
    background-color: #22c55e;
    height: 100%;
}

.toggle-button-small.exclude {
    background-color: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border-color: #ef4444;
}

.toggle-button-small.exclude::before {
    background-color: #ef4444;
    height: 100%;
}

.visualization-controls {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.viz-toggle-button {
    padding: 8px 12px;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 400;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.viz-toggle-button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    width: 3px;
    background-color: rgba(255, 255, 255, 0.9);
    transition: height 0.3s ease;
}

.viz-toggle-button:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

.viz-toggle-button:hover::before {
    height: 100%;
}

.viz-toggle-button.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.4);
}

.viz-toggle-button.active::before {
    height: 100%;
}

@media (max-width: 768px) {
    .dashboard-layout {
        flex-direction: column;
    }

    .dashboard-sidebar {
        flex: 1;
        width: 100%;
    }
}
