.vot-generator {
    background-color: transparent;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.vot-generator .vot-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    padding-bottom: 20px;
}

.vot-generator .vot-row.part-1 .emo {
    width: 50px;
    height: 50px;
}

.vot-generator .vot-row.part-2 .emo {
    width: auto;
    min-width: 100px;
    height: 50px;
}

.vot-generator .vot-row.part-3 .emo {
    width: 100%;
    max-width: 600px;
    height: 50px;
}

.vot-generator .emo {
    background: white;
    border-radius: 8px;
    font-size: 20px;
    margin: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    cursor: pointer;
    box-sizing: border-box;
    padding: 5px 10px;
    border: 1px solid #e2e8f0;
    text-align: center;
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.2s ease;
    color: #4a5568;
}

.vot-generator .emo:hover {
    border-color: var(--navy);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    color: var(--navy);
}

.vot-generator h4 {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 1rem;
    font-size: 1.25rem;
    color: #2d3748;
}

.section-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 220px;
    max-height: 250px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 100;
    overflow-y: auto;
    padding: 8px 0;
    text-align: left;
    display: none;
}
.section-dropdown div {
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #4a5568;
    transition: background 0.2s ease;
}
.section-dropdown div:hover {
    background: #f3f4f6;
    color: var(--navy);
}


/* Featured Symbols Styles */
.featured-symbols {
    max-width: 680px;
    margin: 0 auto 30px auto;
    text-align: center;
}

.featured-symbols .label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #4a5568;
    margin-bottom: 12px;
}

.featured-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.featured-list .emo {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #4a5568;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.featured-list .emo:hover {
    border-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    color: #000;
}

