#consent-banner {
      position: fixed; bottom: 0; left: 0; right: 0;
      display: flex; align-items: center; justify-content: center;
      padding: 0.75rem 1rem; font-size: 0.9rem; z-index: 10000;
      transition: transform 0.3s ease-in-out;
      background: rgba(255,255,255,0.95); color: #333;
      box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
    }
    .d #consent-banner {
      background: rgba(32,32,32,0.95); color: #eee;
      box-shadow: 0 -2px 8px rgba(0,0,0,0.5);
    }
    #consent-banner.hidden { transform: translateY(100%); }
    .consent-accept, .consent-decline {
      margin-left: 0.5rem;
      padding: 0.5rem 1.2rem;
      background: transparent;
      border-radius: 4px;
      cursor: pointer;
    }
    .consent-accept {
      border: 1px solid rgba(40,167,69,0.6);
      color: #28a745;
      position: relative; overflow: hidden;
    }
    .consent-accept .fill {
      position: absolute; top: 0; left: 0; bottom: 0;
      width: 0%; background: rgba(40,167,69,0.3);
      z-index: 1; transition: width 0.1s linear;
    }
    .consent-accept span { position: relative; z-index: 2; }
    .consent-decline {
      border: 1px solid rgba(220,53,69,0.6);
      color: #dc3545;
    }.custom-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.custom-menu li { position: relative; }
.dropdown-toggle {
    background: transparent;
    border: none;
    font-weight: bold;
    cursor: pointer;
    color: #1cb5e0;
    font-size: 0.95rem;
}
.dropdown-menu {
    display: none;
    position: absolute;
    background: #fff;
    color: #333;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    padding: 0.5rem;
    z-index: 1000;
    min-width: 140px;
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-item {
    display: block;
    padding: 0.25rem 0.75rem;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.2s;
}
.dropdown-item:hover,
.dropdown-item.active {
    color: #1cb5e0 !important;
    font-weight: 500;
}

/* Filter Help Styles */
.filter-container {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
}

.filter-help-btn {
    transform: translateY(-50%);
    background: #1cb5e0;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.filter-help-btn:hover {
    background: #0e8bb5;
}

.filter-help-modal {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    min-width: 350px;
    max-width: 400px;
    font-size: 0.5em;
}

.filter-help-content {
    padding: 15px;
}

.filter-help-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.filter-help-header h3 {
    margin: 0;
    color: #333;
    font-size: 16px;
}

.filter-help-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-help-close:hover {
    color: #333;
}

.filter-help-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
}

.filter-help-table th,
.filter-help-table td {
    padding: 8px 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.filter-help-table th {
    background: #f8f9fa;
    font-weight: bold;
    color: #333;
}

.filter-help-table td:first-child {
    font-family: monospace;
    background: #f8f9fa;
    font-weight: bold;
    color: #1cb5e0;
}

.filter-help-example {
    font-size: 12px;
    color: #666;
    margin: 10px 0 0 0;
}

/* Dark theme support */
.d .filter-help-modal {
    background: #333;
    border-color: #000;
    color: #f8f8f2;
}

.d .filter-help-header h3 {
    color: #f8f8f2;
}

.d .filter-help-table th {
    background: #000;
    color: #f8f8f2;
}

.d .filter-help-table td:first-child {
    color: #50fa7b;
}

.d .filter-help-table td {
    color: #f8f8f2;
    border-color: #000;
}

.d .filter-help-example {
    color: #f8f8f2;
}