.fortune-container {
    background-color: #fff5e6;
    border-radius: 10px;
    padding: 20px;
    max-width: 400px;
    margin: 20px auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-family: 'Arial', sans-serif;
    color: #333;
}

/* リトライ回数のテキストスタイルのみ */
.fortune-retries {
    font-size: 1.1em;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 20px; /* 下に1行分の余白 */
}

/* 占いメッセージのスタイル */
.fortune-message {
    font-size: 1.4em;
    font-weight: bold;
    color: #ff6b6b;
    margin: 15px 0; /* 上下に1行分の余白 */
}

/* 占うボタンのスタイル */
.retry-button {
    padding: 10px 20px;
    font-size: 1.1em;
    font-weight: bold;
    color: #ffffff;
    background-color: #4caf50;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    margin-top: 15px; /* 上に1行分の余白 */
}

.retry-button:hover {
    background-color: #45a049;
    transform: scale(1.05);
}
.fortune-container {
    background-color: #fff5e6;
    border-radius: 10px;
    padding: 20px;
    max-width: 400px;
    margin: 20px auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-family: 'Arial', sans-serif;
    color: #333;
}

.sns-buttons {
    margin-top: 20px; /* 占い枠との余白 */
    display: flex;
    justify-content: center;
    gap: 10px;
}

.twitter-btn,
.instagram-btn {
    padding: 6px 10px;
    font-size: 0.9em;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.twitter-btn {
    background-color: #1da1f2;
}

.twitter-btn:hover {
    background-color: #0d8ae5;
}

.instagram-btn {
    background-color: #e1306c;
}

.instagram-btn:hover {
    background-color: #d91a5c;
}
