/* Easy Online Voting - Frontend Styles */

.eov-voting-wrapper {
    font-family: 'Hiragino Kaku Gothic ProN', 'Meiryo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #333;
}

.eov-voting-wrapper *,
.eov-voting-wrapper *::before,
.eov-voting-wrapper *::after {
    box-sizing: border-box;
}

.eov-voting-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 30px;
    width: 100%;
    max-width: 600px;
}

.eov-voting-header {
    margin-bottom: 30px;
}

.eov-group-name {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 8px 0;
    color: #333;
    text-align: center;
}

.eov-catchphrase {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    text-align: center;
}

.eov-voted-message {
    background-color: #d1ecf1;
    color: #0c5460;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
}

.eov-chart {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 8px;
}

.eov-poll-item {
    display: flex;
    align-items: center;
    cursor: default;
    transition: all 0.2s ease;
}

.eov-poll-item.eov-clickable {
    cursor: pointer;
}

.eov-poll-item.eov-clickable:hover {
    transform: translateY(-1px);
}

.eov-option-name {
    font-size: 15px;
    width: 60px;
    flex-shrink: 0;
    text-align: left;
    margin-right: 15px;
    color: #495057;
}

.eov-bar-bg {
    flex-grow: 1;
    height: 30px;
    background-color: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
}

.eov-bar {
    height: 100%;
    border-radius: 5px;
    transition: width 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: white;
    font-size: 12px;
    padding-right: 8px;
    box-sizing: border-box;
    min-width: 0;
}

.eov-x-axis {
    display: flex;
    justify-content: space-between;
    margin-left: 75px;
    margin-top: 8px;
    margin-bottom: 30px;
    font-size: 12px;
    color: #888;
}

.eov-button-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.eov-vote-button {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 12px 10px;
    cursor: pointer;
    font-size: 15px;
    color: #495057;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
    width: 100%;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    line-height: 1.5;
    outline: none;
}

.eov-vote-button:hover {
    background-color: #f1f3f5;
    border-color: #ced4da;
    text-decoration: none;
}

.eov-vote-button:focus {
    outline: 2px solid #007cba;
    outline-offset: 2px;
}

.eov-vote-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.eov-message {
    text-align: center;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
}

.eov-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.eov-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ベーシックテーマ */
.eov-theme-basic .eov-poll-item:nth-child(1) .eov-bar { background-color: #27a499; }
.eov-theme-basic .eov-poll-item:nth-child(2) .eov-bar { background-color: #e86551; }
.eov-theme-basic .eov-poll-item:nth-child(3) .eov-bar { background-color: #364e62; }
.eov-theme-basic .eov-poll-item:nth-child(4) .eov-bar { background-color: #f1c453; }
.eov-theme-basic .eov-poll-item:nth-child(5) .eov-bar { background-color: #f3a261; }
.eov-theme-basic .eov-poll-item:nth-child(6) .eov-bar { background-color: #8e44ad; }
.eov-theme-basic .eov-poll-item:nth-child(7) .eov-bar { background-color: #e74c3c; }
.eov-theme-basic .eov-poll-item:nth-child(8) .eov-bar { background-color: #3498db; }
.eov-theme-basic .eov-poll-item:nth-child(9) .eov-bar { background-color: #2ecc71; }
.eov-theme-basic .eov-poll-item:nth-child(10) .eov-bar { background-color: #f39c12; }
.eov-theme-basic .eov-poll-item:nth-child(11) .eov-bar { background-color: #27a499; }
.eov-theme-basic .eov-poll-item:nth-child(12) .eov-bar { background-color: #e86551; }
.eov-theme-basic .eov-poll-item:nth-child(13) .eov-bar { background-color: #364e62; }
.eov-theme-basic .eov-poll-item:nth-child(14) .eov-bar { background-color: #f1c453; }
.eov-theme-basic .eov-poll-item:nth-child(15) .eov-bar { background-color: #f3a261; }
.eov-theme-basic .eov-poll-item:nth-child(16) .eov-bar { background-color: #8e44ad; }
.eov-theme-basic .eov-poll-item:nth-child(17) .eov-bar { background-color: #e74c3c; }
.eov-theme-basic .eov-poll-item:nth-child(18) .eov-bar { background-color: #3498db; }
.eov-theme-basic .eov-poll-item:nth-child(19) .eov-bar { background-color: #2ecc71; }
.eov-theme-basic .eov-poll-item:nth-child(20) .eov-bar { background-color: #f39c12; }

/* シンプルテーマ */
.eov-theme-simple .eov-poll-item:nth-child(1) .eov-bar { background-color: #333333; }
.eov-theme-simple .eov-poll-item:nth-child(2) .eov-bar { background-color: #555555; }
.eov-theme-simple .eov-poll-item:nth-child(3) .eov-bar { background-color: #777777; }
.eov-theme-simple .eov-poll-item:nth-child(4) .eov-bar { background-color: #999999; }
.eov-theme-simple .eov-poll-item:nth-child(5) .eov-bar { background-color: #bbbbbb; }
.eov-theme-simple .eov-poll-item:nth-child(6) .eov-bar { background-color: #666666; }
.eov-theme-simple .eov-poll-item:nth-child(7) .eov-bar { background-color: #888888; }
.eov-theme-simple .eov-poll-item:nth-child(8) .eov-bar { background-color: #aaaaaa; }
.eov-theme-simple .eov-poll-item:nth-child(9) .eov-bar { background-color: #cccccc; }
.eov-theme-simple .eov-poll-item:nth-child(10) .eov-bar { background-color: #444444; }
.eov-theme-simple .eov-poll-item:nth-child(11) .eov-bar { background-color: #333333; }
.eov-theme-simple .eov-poll-item:nth-child(12) .eov-bar { background-color: #555555; }
.eov-theme-simple .eov-poll-item:nth-child(13) .eov-bar { background-color: #777777; }
.eov-theme-simple .eov-poll-item:nth-child(14) .eov-bar { background-color: #999999; }
.eov-theme-simple .eov-poll-item:nth-child(15) .eov-bar { background-color: #bbbbbb; }
.eov-theme-simple .eov-poll-item:nth-child(16) .eov-bar { background-color: #666666; }
.eov-theme-simple .eov-poll-item:nth-child(17) .eov-bar { background-color: #888888; }
.eov-theme-simple .eov-poll-item:nth-child(18) .eov-bar { background-color: #aaaaaa; }
.eov-theme-simple .eov-poll-item:nth-child(19) .eov-bar { background-color: #cccccc; }
.eov-theme-simple .eov-poll-item:nth-child(20) .eov-bar { background-color: #444444; }

/* ナチュラルテーマ */
.eov-theme-natural .eov-poll-item:nth-child(1) .eov-bar { background-color: #8fbc8f; }
.eov-theme-natural .eov-poll-item:nth-child(2) .eov-bar { background-color: #a0c4a0; }
.eov-theme-natural .eov-poll-item:nth-child(3) .eov-bar { background-color: #7aa67a; }
.eov-theme-natural .eov-poll-item:nth-child(4) .eov-bar { background-color: #9acd9a; }
.eov-theme-natural .eov-poll-item:nth-child(5) .eov-bar { background-color: #6b8e6b; }
.eov-theme-natural .eov-poll-item:nth-child(6) .eov-bar { background-color: #90ee90; }
.eov-theme-natural .eov-poll-item:nth-child(7) .eov-bar { background-color: #98fb98; }
.eov-theme-natural .eov-poll-item:nth-child(8) .eov-bar { background-color: #adff2f; }
.eov-theme-natural .eov-poll-item:nth-child(9) .eov-bar { background-color: #32cd32; }
.eov-theme-natural .eov-poll-item:nth-child(10) .eov-bar { background-color: #228b22; }
.eov-theme-natural .eov-poll-item:nth-child(11) .eov-bar { background-color: #8fbc8f; }
.eov-theme-natural .eov-poll-item:nth-child(12) .eov-bar { background-color: #a0c4a0; }
.eov-theme-natural .eov-poll-item:nth-child(13) .eov-bar { background-color: #7aa67a; }
.eov-theme-natural .eov-poll-item:nth-child(14) .eov-bar { background-color: #9acd9a; }
.eov-theme-natural .eov-poll-item:nth-child(15) .eov-bar { background-color: #6b8e6b; }
.eov-theme-natural .eov-poll-item:nth-child(16) .eov-bar { background-color: #90ee90; }
.eov-theme-natural .eov-poll-item:nth-child(17) .eov-bar { background-color: #98fb98; }
.eov-theme-natural .eov-poll-item:nth-child(18) .eov-bar { background-color: #adff2f; }
.eov-theme-natural .eov-poll-item:nth-child(19) .eov-bar { background-color: #32cd32; }
.eov-theme-natural .eov-poll-item:nth-child(20) .eov-bar { background-color: #228b22; }

/* パステルテーマ */
.eov-theme-pastel .eov-poll-item:nth-child(1) .eov-bar { background-color: #f48fb1; }
.eov-theme-pastel .eov-poll-item:nth-child(2) .eov-bar { background-color: #ce93d8; }
.eov-theme-pastel .eov-poll-item:nth-child(3) .eov-bar { background-color: #90caf9; }
.eov-theme-pastel .eov-poll-item:nth-child(4) .eov-bar { background-color: #a5d6a7; }
.eov-theme-pastel .eov-poll-item:nth-child(5) .eov-bar { background-color: #ffcc02; }
.eov-theme-pastel .eov-poll-item:nth-child(6) .eov-bar { background-color: #ffab91; }
.eov-theme-pastel .eov-poll-item:nth-child(7) .eov-bar { background-color: #f8bbd9; }
.eov-theme-pastel .eov-poll-item:nth-child(8) .eov-bar { background-color: #b39ddb; }
.eov-theme-pastel .eov-poll-item:nth-child(9) .eov-bar { background-color: #81c784; }
.eov-theme-pastel .eov-poll-item:nth-child(10) .eov-bar { background-color: #ffb74d; }
.eov-theme-pastel .eov-poll-item:nth-child(11) .eov-bar { background-color: #f48fb1; }
.eov-theme-pastel .eov-poll-item:nth-child(12) .eov-bar { background-color: #ce93d8; }
.eov-theme-pastel .eov-poll-item:nth-child(13) .eov-bar { background-color: #90caf9; }
.eov-theme-pastel .eov-poll-item:nth-child(14) .eov-bar { background-color: #a5d6a7; }
.eov-theme-pastel .eov-poll-item:nth-child(15) .eov-bar { background-color: #ffcc02; }
.eov-theme-pastel .eov-poll-item:nth-child(16) .eov-bar { background-color: #ffab91; }
.eov-theme-pastel .eov-poll-item:nth-child(17) .eov-bar { background-color: #f8bbd9; }
.eov-theme-pastel .eov-poll-item:nth-child(18) .eov-bar { background-color: #b39ddb; }
.eov-theme-pastel .eov-poll-item:nth-child(19) .eov-bar { background-color: #81c784; }
.eov-theme-pastel .eov-poll-item:nth-child(20) .eov-bar { background-color: #ffb74d; }

/* ビビッドテーマ */
.eov-theme-vivid .eov-poll-item:nth-child(1) .eov-bar { background-color: #ff5722; }
.eov-theme-vivid .eov-poll-item:nth-child(2) .eov-bar { background-color: #e91e63; }
.eov-theme-vivid .eov-poll-item:nth-child(3) .eov-bar { background-color: #9c27b0; }
.eov-theme-vivid .eov-poll-item:nth-child(4) .eov-bar { background-color: #3f51b5; }
.eov-theme-vivid .eov-poll-item:nth-child(5) .eov-bar { background-color: #00bcd4; }
.eov-theme-vivid .eov-poll-item:nth-child(6) .eov-bar { background-color: #4caf50; }
.eov-theme-vivid .eov-poll-item:nth-child(7) .eov-bar { background-color: #ff9800; }
.eov-theme-vivid .eov-poll-item:nth-child(8) .eov-bar { background-color: #f44336; }
.eov-theme-vivid .eov-poll-item:nth-child(9) .eov-bar { background-color: #2196f3; }
.eov-theme-vivid .eov-poll-item:nth-child(10) .eov-bar { background-color: #607d8b; }
.eov-theme-vivid .eov-poll-item:nth-child(11) .eov-bar { background-color: #ff5722; }
.eov-theme-vivid .eov-poll-item:nth-child(12) .eov-bar { background-color: #e91e63; }
.eov-theme-vivid .eov-poll-item:nth-child(13) .eov-bar { background-color: #9c27b0; }
.eov-theme-vivid .eov-poll-item:nth-child(14) .eov-bar { background-color: #3f51b5; }
.eov-theme-vivid .eov-poll-item:nth-child(15) .eov-bar { background-color: #00bcd4; }
.eov-theme-vivid .eov-poll-item:nth-child(16) .eov-bar { background-color: #4caf50; }
.eov-theme-vivid .eov-poll-item:nth-child(17) .eov-bar { background-color: #ff9800; }
.eov-theme-vivid .eov-poll-item:nth-child(18) .eov-bar { background-color: #f44336; }
.eov-theme-vivid .eov-poll-item:nth-child(19) .eov-bar { background-color: #2196f3; }
.eov-theme-vivid .eov-poll-item:nth-child(20) .eov-bar { background-color: #607d8b; }

/* サンセットテーマ */
.eov-theme-sunset .eov-poll-item:nth-child(1) .eov-bar { background: linear-gradient(90deg, #ff6b6b, #ffa726); }
.eov-theme-sunset .eov-poll-item:nth-child(2) .eov-bar { background: linear-gradient(90deg, #ff8a80, #ffcc02); }
.eov-theme-sunset .eov-poll-item:nth-child(3) .eov-bar { background: linear-gradient(90deg, #ff5252, #ff9800); }
.eov-theme-sunset .eov-poll-item:nth-child(4) .eov-bar { background: linear-gradient(90deg, #ff7043, #ffab40); }
.eov-theme-sunset .eov-poll-item:nth-child(5) .eov-bar { background: linear-gradient(90deg, #ff6f00, #ff8f00); }
.eov-theme-sunset .eov-poll-item:nth-child(6) .eov-bar { background: linear-gradient(90deg, #ff3d00, #ff6d00); }
.eov-theme-sunset .eov-poll-item:nth-child(7) .eov-bar { background: linear-gradient(90deg, #ff1744, #ff5722); }
.eov-theme-sunset .eov-poll-item:nth-child(8) .eov-bar { background: linear-gradient(90deg, #e91e63, #ff5722); }
.eov-theme-sunset .eov-poll-item:nth-child(9) .eov-bar { background: linear-gradient(90deg, #ad1457, #ff6f00); }
.eov-theme-sunset .eov-poll-item:nth-child(10) .eov-bar { background: linear-gradient(90deg, #880e4f, #ff8f00); }
.eov-theme-sunset .eov-poll-item:nth-child(11) .eov-bar { background: linear-gradient(90deg, #ff6b6b, #ffa726); }
.eov-theme-sunset .eov-poll-item:nth-child(12) .eov-bar { background: linear-gradient(90deg, #ff8a80, #ffcc02); }
.eov-theme-sunset .eov-poll-item:nth-child(13) .eov-bar { background: linear-gradient(90deg, #ff5252, #ff9800); }
.eov-theme-sunset .eov-poll-item:nth-child(14) .eov-bar { background: linear-gradient(90deg, #ff7043, #ffab40); }
.eov-theme-sunset .eov-poll-item:nth-child(15) .eov-bar { background: linear-gradient(90deg, #ff6f00, #ff8f00); }
.eov-theme-sunset .eov-poll-item:nth-child(16) .eov-bar { background: linear-gradient(90deg, #ff3d00, #ff6d00); }
.eov-theme-sunset .eov-poll-item:nth-child(17) .eov-bar { background: linear-gradient(90deg, #ff1744, #ff5722); }
.eov-theme-sunset .eov-poll-item:nth-child(18) .eov-bar { background: linear-gradient(90deg, #e91e63, #ff5722); }
.eov-theme-sunset .eov-poll-item:nth-child(19) .eov-bar { background: linear-gradient(90deg, #ad1457, #ff6f00); }
.eov-theme-sunset .eov-poll-item:nth-child(20) .eov-bar { background: linear-gradient(90deg, #880e4f, #ff8f00); }

/* アーストーンテーマ */
.eov-theme-earth .eov-poll-item:nth-child(1) .eov-bar { background-color: #542E01; }
.eov-theme-earth .eov-poll-item:nth-child(2) .eov-bar { background-color: #ADCBD5; }
.eov-theme-earth .eov-poll-item:nth-child(3) .eov-bar { background-color: #4A97B3; }
.eov-theme-earth .eov-poll-item:nth-child(4) .eov-bar { background-color: #985D01; }
.eov-theme-earth .eov-poll-item:nth-child(5) .eov-bar { background-color: #00427C; }
.eov-theme-earth .eov-poll-item:nth-child(6) .eov-bar { background-color: #9B7B6C; }
.eov-theme-earth .eov-poll-item:nth-child(7) .eov-bar { background-color: #0F2C4A; }
.eov-theme-earth .eov-poll-item:nth-child(8) .eov-bar { background-color: #D5EAD9; }
.eov-theme-earth .eov-poll-item:nth-child(9) .eov-bar { background-color: #7F852B; }
.eov-theme-earth .eov-poll-item:nth-child(10) .eov-bar { background-color: #542E01; }
.eov-theme-earth .eov-poll-item:nth-child(11) .eov-bar { background-color: #542E01; }
.eov-theme-earth .eov-poll-item:nth-child(12) .eov-bar { background-color: #ADCBD5; }
.eov-theme-earth .eov-poll-item:nth-child(13) .eov-bar { background-color: #4A97B3; }
.eov-theme-earth .eov-poll-item:nth-child(14) .eov-bar { background-color: #985D01; }
.eov-theme-earth .eov-poll-item:nth-child(15) .eov-bar { background-color: #00427C; }
.eov-theme-earth .eov-poll-item:nth-child(16) .eov-bar { background-color: #9B7B6C; }
.eov-theme-earth .eov-poll-item:nth-child(17) .eov-bar { background-color: #0F2C4A; }
.eov-theme-earth .eov-poll-item:nth-child(18) .eov-bar { background-color: #D5EAD9; }
.eov-theme-earth .eov-poll-item:nth-child(19) .eov-bar { background-color: #7F852B; }
.eov-theme-earth .eov-poll-item:nth-child(20) .eov-bar { background-color: #542E01; }

/* ネオンライトテーマ */
.eov-theme-neon {
    background-color: #0a0a0a;
    color: #ffffff;
}

.eov-theme-neon .eov-group-name {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.eov-theme-neon .eov-catchphrase {
    color: #ff00ff;
    text-shadow: 0 0 8px #ff00ff;
}

.eov-theme-neon .eov-option-name {
    color: #ffffff;
}

.eov-theme-neon .eov-bar-bg {
    background-color: #333333;
}

.eov-theme-neon .eov-poll-item:nth-child(1) .eov-bar { background: linear-gradient(90deg, #ff00ff, #00ffff); box-shadow: 0 0 10px rgba(255, 0, 255, 0.5); }
.eov-theme-neon .eov-poll-item:nth-child(2) .eov-bar { background: linear-gradient(90deg, #00ff00, #ffff00); box-shadow: 0 0 10px rgba(0, 255, 0, 0.5); }
.eov-theme-neon .eov-poll-item:nth-child(3) .eov-bar { background: linear-gradient(90deg, #ff0080, #8000ff); box-shadow: 0 0 10px rgba(255, 0, 128, 0.5); }
.eov-theme-neon .eov-poll-item:nth-child(4) .eov-bar { background: linear-gradient(90deg, #00ffff, #0080ff); box-shadow: 0 0 10px rgba(0, 255, 255, 0.5); }
.eov-theme-neon .eov-poll-item:nth-child(5) .eov-bar { background: linear-gradient(90deg, #ff8000, #ff0040); box-shadow: 0 0 10px rgba(255, 128, 0, 0.5); }
.eov-theme-neon .eov-poll-item:nth-child(6) .eov-bar { background: linear-gradient(90deg, #80ff00, #00ff80); box-shadow: 0 0 10px rgba(128, 255, 0, 0.5); }
.eov-theme-neon .eov-poll-item:nth-child(7) .eov-bar { background: linear-gradient(90deg, #ff4080, #8040ff); box-shadow: 0 0 10px rgba(255, 64, 128, 0.5); }
.eov-theme-neon .eov-poll-item:nth-child(8) .eov-bar { background: linear-gradient(90deg, #40ff80, #8080ff); box-shadow: 0 0 10px rgba(64, 255, 128, 0.5); }
.eov-theme-neon .eov-poll-item:nth-child(9) .eov-bar { background: linear-gradient(90deg, #ff8040, #ff4040); box-shadow: 0 0 10px rgba(255, 128, 64, 0.5); }
.eov-theme-neon .eov-poll-item:nth-child(10) .eov-bar { background: linear-gradient(90deg, #4040ff, #ff4080); box-shadow: 0 0 10px rgba(64, 64, 255, 0.5); }
.eov-theme-neon .eov-poll-item:nth-child(11) .eov-bar { background: linear-gradient(90deg, #ff00ff, #00ffff); box-shadow: 0 0 10px rgba(255, 0, 255, 0.5); }
.eov-theme-neon .eov-poll-item:nth-child(12) .eov-bar { background: linear-gradient(90deg, #00ff00, #ffff00); box-shadow: 0 0 10px rgba(0, 255, 0, 0.5); }
.eov-theme-neon .eov-poll-item:nth-child(13) .eov-bar { background: linear-gradient(90deg, #ff0080, #8000ff); box-shadow: 0 0 10px rgba(255, 0, 128, 0.5); }
.eov-theme-neon .eov-poll-item:nth-child(14) .eov-bar { background: linear-gradient(90deg, #00ffff, #0080ff); box-shadow: 0 0 10px rgba(0, 255, 255, 0.5); }
.eov-theme-neon .eov-poll-item:nth-child(15) .eov-bar { background: linear-gradient(90deg, #ff8000, #ff0040); box-shadow: 0 0 10px rgba(255, 128, 0, 0.5); }
.eov-theme-neon .eov-poll-item:nth-child(16) .eov-bar { background: linear-gradient(90deg, #80ff00, #00ff80); box-shadow: 0 0 10px rgba(128, 255, 0, 0.5); }
.eov-theme-neon .eov-poll-item:nth-child(17) .eov-bar { background: linear-gradient(90deg, #ff4080, #8040ff); box-shadow: 0 0 10px rgba(255, 64, 128, 0.5); }
.eov-theme-neon .eov-poll-item:nth-child(18) .eov-bar { background: linear-gradient(90deg, #40ff80, #8080ff); box-shadow: 0 0 10px rgba(64, 255, 128, 0.5); }
.eov-theme-neon .eov-poll-item:nth-child(19) .eov-bar { background: linear-gradient(90deg, #ff8040, #ff4040); box-shadow: 0 0 10px rgba(255, 128, 64, 0.5); }
.eov-theme-neon .eov-poll-item:nth-child(20) .eov-bar { background: linear-gradient(90deg, #4040ff, #ff4080); box-shadow: 0 0 10px rgba(64, 64, 255, 0.5); }

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .eov-voting-container {
        padding: 20px;
        margin: 10px;
    }
    
    .eov-group-name {
        font-size: 18px;
    }
    
    .eov-catchphrase {
        font-size: 13px;
    }
    
    .eov-option-name {
        width: 50px;
        font-size: 14px;
        margin-right: 10px;
    }
    
    .eov-x-axis {
        margin-left: 60px;
        font-size: 11px;
    }
    
    .eov-button-group {
        gap: 8px;
    }
    
    .eov-vote-button {
        padding: 10px 8px;
        font-size: 14px;
    }
} 