#vicipoll-container { 
    background: #ffffff; 
    border-radius: 20px; 
    padding: 20px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    font-family: sans-serif;
    max-width: 1000px;
    margin: 20px auto;
    overflow: hidden; 
    border: 1px solid #eee;
}

/* TOP MAP FILTER BAR */
#vici-map-filter-bar {
    display: flex;
    gap: 10px;
    padding: 10px 0 15px 0;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: thin;
}

.vici-filter-label {
    font-weight: bold;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vici-filter-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.vici-filter-btn.active {
    background: #6e8efb;
    color: #fff;
    border-color: #6e8efb;
    box-shadow: 0 4px 10px rgba(110, 142, 251, 0.3);
}

#vicipoll-map { 
    height: 400px; 
    width: 100%; 
    border-radius: 15px; 
    margin-bottom: 20px; 
    border: 1px solid #f0f0f0; 
    position: relative; 
    overflow: hidden;   
    display: block;
}

.leaflet-container {
    z-index: 1 !important;
}

.vici-ui-split { 
    display: flex; 
    gap: 20px; 
    height: 350px; 
}

.vici-col-left { 
    flex: 1; 
    overflow-y: auto; 
    border-right: 1px solid #eee; 
    padding-right: 15px; 
}

.vici-col-right { 
    flex: 1.5; 
    padding: 10px; 
    display: flex; 
    flex-direction: column; 
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* LOGIN WALL STYLING */
.vici-guest-lock {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    background: #fcfcfc;
    border-radius: 12px;
}

.vici-guest-lock p {
    color: #777;
    font-size: 14px;
    margin-bottom: 15px;
}

.vici-login-btn {
    background: #6e8efb;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(110, 142, 251, 0.2);
    transition: background 0.3s ease, transform 0.2s;
}

.vici-login-btn:hover {
    background: #5a7be0;
    transform: translateY(-2px);
}

/* CATEGORY & OPTION BUTTONS */
.vici-cat-btn { 
    width: 100%; 
    padding: 15px; 
    margin-bottom: 10px; 
    border: none; 
    border-radius: 12px; 
    background: #6e8efb; 
    color: #fff; 
    font-weight: bold; 
    cursor: pointer; 
    text-align: left; 
    transition: transform 0.2s;
}

.vici-cat-btn:hover { transform: translateX(5px); }

.vici-opt-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 15px; 
    margin-top: 10px;
}

.vici-opt-btn { 
    padding: 20px; 
    border: none; 
    border-radius: 10px; 
    font-weight: 800; 
    cursor: pointer; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vici-opt-btn.inactive {
    background: #e0e0e0 !important;
    color: #000000 !important;
    transform: scale(0.95);
    opacity: 0.8;
}

.vici-opt-btn.active {
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transform: scale(1.1);
    z-index: 5;
}

/* SUCCESS & FEEDBACK */
.vici-success-msg {
    color: #2ecc71;
    font-weight: bold;
    text-align: center;
    padding: 40px 20px;
    font-size: 1.1em;
}

.vici-hint { color: #999; text-align: center; margin-top: 50px; }

/* GLOW ANIMATION */
.vici-glow { 
    animation: vici-pulse 2s infinite ease-in-out; 
}

@keyframes vici-pulse {
    0% { filter: drop-shadow(0 0 1px #fff); opacity: 0.8; }
    50% { filter: drop-shadow(0 0 8px currentColor); opacity: 1; }
    100% { filter: drop-shadow(0 0 1px #fff); opacity: 0.8; }
}