/* 人気曲投票のタイトル */
.vote-song-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

/* 説明文 */
.vote-song-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
}

/* 投票フォーム全体のスタイル */
.vote-song-form {
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 500px;
    margin: 0 auto;
}

/* 投票フォーム内のラベル */
.vote-song-form label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 8px;
}

/* 入力フィールド */
.vote-song-form input[type="text"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

/* 送信ボタン */
.vote-song-form input[type="submit"] {
    background-color: #4CAF50;
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}


.touhyoukekka td{
    text-align: center;
}

.vote-song-form input[type="submit"]:hover {
    background-color: #45a049;
}