@font-face {
    font-family: 'CustomFont';
    src: url('../../../fonts/font2.woff2') format('woff2'),
        url('../../../fonts/font2.woff') format('woff'),
        url('../../../fonts/font2.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* 基本的なリセットとフォント設定 */
body,
html {
    margin: 0;
    padding: 0;
    font-family: 'CustomFont', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f7f8fa;
    color: #2c3e50;
}

.container {
    max-width: 480px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.containerTwitch {
    max-width: 480px;
    padding: 30px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

h1 {
    text-align: center;
    color: #34495e;
    font-weight: 600;
    margin-bottom: 25px;
}

/* フォームのスタイル */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #34495e;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #dfe6e9;
    border-radius: 8px;
    box-sizing: border-box;
    background-color: #f7f8fa;
    transition: all 0.3s ease;
    font-family: inherit;
    /* textareaにフォントを継承 */
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8e44ad;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(142, 68, 173, 0.15);
}

button {
    font-family: 'CustomFont', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    width: 100%;
    padding: 15px;
    background-image: linear-gradient(to right, #8e44ad, #9b59b6);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.3);
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 89, 182, 0.4);
}

/* メッセージ表示エリア */
.message {
    padding: 15px;
    margin-top: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.message.error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* アプリケーションのレイアウト */
.app-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-width: 480px;
    /* スマートフォンサイズに合わせる */
    margin: 0 auto;
    background-color: #ffffff;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
}

.app-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    height: 60px;
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.header-logo {
    height: 35px;
}

.app-content {
    flex: 1;
    overflow-y: auto;
    /* コンテンツが多ければスクロール */
    padding: 20px;
    padding-bottom: 85px;
    /* 下部ナビゲーションの高さ分 */
    background-color: #f7f8fa;
}

/* 下部ナビゲーション */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 480px;
    /* コンテナの幅に合わせる */
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 70px;
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #95a5a6;
    font-size: 12px;
    transition: color 0.3s ease;
}

.nav-item.active,
.nav-item:hover {
    color: #8e44ad;
}

.nav-icon {
    font-size: 22px;
    margin-bottom: 5px;
}

/* ログイン・登録ページのリンク */
.auth-link {
    text-align: center;
    margin-top: 20px;
}

.auth-link a {
    color: #8e44ad;
    text-decoration: none;
    font-weight: 600;
}

.auth-link a:hover {
    text-decoration: underline;
}

.auth-btn-link {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background-color: transparent;
    border: 2px solid #8e44ad;
    color: #8e44ad;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s;
    box-sizing: border-box;
    margin-top: 10px;
}

.auth-btn-link:hover {
    background-color: #8e44ad;
    color: white;
    text-decoration: none;
}

.info-btn {
    background: none;
    border: none;
    color: #bdc3c7;
    /* Light grey */
    cursor: pointer;
    font-size: 1em;
    padding: 0 5px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-btn:hover {
    color: #8e44ad;
}

.modal-image-container {
    text-align: center;
    padding: 10px;
}

.modal-image-container img {
    max-width: 100%;
    height: auto;
    max-height: 70vh;
    /* モーダルからはみ出ないように */
    border-radius: 8px;
}

/* --- Point and Shop Themes --- */

/* Tsukasa (fj) Theme */
.balance-card.theme-fj {
    background: linear-gradient(135deg, #005A5A, #008080);
}

.theme-fj .price-tag {
    color: #005A5A;
}

.current-points.theme-fj {
    background-color: #e0f2f1;
    border-left: 4px solid #005A5A;
}

.theme-fj .redeem-button {
    background-image: linear-gradient(to right, #00796b, #00897b);
}


/* Hayato (hyt) Theme */
.balance-card.theme-hyt {
    background: linear-gradient(135deg, #006400, #2E8B57);
}

.theme-hyt .price-tag {
    color: #006400;
}

.current-points.theme-hyt {
    background-color: #e8f5e9;
    border-left: 4px solid #006400;
}

.theme-hyt .redeem-button {
    background-image: linear-gradient(to right, #388e3c, #43a047);
}

/* Fav (fav) Theme */
.balance-card.theme-favPt {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.theme-favPt .price-tag {
    color: #DAA520;
}

.current-points.theme-favPt {
    background-color: #fff8e1;
    border-left: 4px solid #FFC107;
}

.theme-favPt .redeem-button {
    background-image: linear-gradient(to right, #FFB300, #FFC107);
}

/* --- Points & Shop Page Cards --- */
.balance-cards-container {
    display: flex;
    gap: 15px;
    /* カード間の隙間 */
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.balance-card {
    flex: 1;
    /* 親要素の幅を均等に分ける */
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.balance-card h3 {
    margin: 0 0 10px 0;
    font-weight: normal;
    font-size: 1.2em;
}

.balance-card .balance-amount {
    font-size: 2.5em;
    font-weight: bold;
}

.balance-card .point-unit {
    font-size: 0.5em;
    margin-left: 5px;
}

/* Theme classes for Quiz Rules Cards (moved from inline styles) */
.balance-card.theme-tsukasa-quiz {
    background: white;
    border: 1px solid #008080;
    color: #333;
}

.balance-card.theme-hayato-quiz {
    background: white;
    border: 1px solid #006400;
    color: #333;
}

.balance-card.theme-other-quiz {
    background: white;
    border: 1px solid #f1c40f;
    color: #333;
}

.point-history h3 {
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.log-list {
    list-style: none;
    padding: 0;
}

.log-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    border-bottom: 1px solid #f0f0f0;
}

.log-item:last-child {
    border-bottom: none;
}

.log-task {
    font-weight: bold;
    display: block;
}

.log-date {
    font-size: 0.9em;
    color: #888;
}

.log-amount {
    font-weight: bold;
    font-size: 1.1em;
}

.log-item.gain .log-amount {
    color: #28a745;
    /* Green */
}

.log-item.spend .log-amount {
    color: #dc3545;
    /* Red */
}

/* Theme-based point history colors */
.log-item.theme-fj.gain .log-amount {
    color: #005A5A;
    /* Tsukasa Theme Color */
}

.log-item.theme-hyt.gain .log-amount {
    color: #006400;
    /* Hayato Theme Color */
}

.log-item.theme-favPt.gain .log-amount {
    color: #DAA520;
    /* fav theme color */
}

/* --- Shop Page --- */
.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.reward-item {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reward-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.reward-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.reward-item h3 {
    font-size: 1em;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.creator {
    font-size: 0.8em;
    color: #777;
    margin-bottom: 10px;
}

.description {
    font-size: 0.9em;
    color: #555;
    min-height: 40px;
}

.price-tag {
    font-weight: bold;
    margin: 10px 0;
    font-size: 1.2em;
}

.redeem-button {
    width: 100%;
    padding: 10px;
    font-size: 0.9em;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.redeem-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.redeem-button.disabled {
    background-image: none;
    background-color: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

/* --- Custom Radio Player --- */
.custom-player {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 50px;
    margin-top: 10px;
}

.play-pause-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: #333;
    color: white;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
    transition: background-color 0.2s;
    padding: 0;
    flex-shrink: 0;
}

.play-pause-btn.playing {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6 19h4V5H6v14zm8-14v14h4V5h-4z'/%3E%3C/svg%3E");
}

.play-pause-btn:hover {
    background-color: #555;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.current-time,
.duration {
    font-size: 0.9em;
    color: #555;
    min-width: 35px;
    text-align: center;
}

.progress-bar-container {
    flex-grow: 1;
    height: 8px;
    background-color: #ddd;
    border-radius: 4px;
    cursor: pointer;
}

.progress-bar {
    height: 100%;
    width: 0;
    background-color: #8e44ad;
    border-radius: 4px;
}

/* --- Account Settings Page (iOS Style) --- */
.settings-group {
    background-color: #fff;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.settings-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.settings-item:last-child {
    border-bottom: none;
}

.settings-item:not(.non-interactive):hover {
    background-color: #f7f7f7;
}

.settings-item:not(.non-interactive)::after {
    content: '\f054';
    /* FontAwesome chevron-right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #c7c7cc;
    margin-left: 10px;
}

.settings-label {
    font-weight: 500;
}

.settings-value {
    color: #8e8e93;
}

.actions-container {
    margin-top: 30px;
    text-align: center;
}

.logout-button {
    display: inline-block;
    padding: 12px 35px;
    background-color: #ff3b30;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.logout-button:hover {
    background-color: #e02b22;
}

/* --- Edit Pages (Username, Password, etc.) --- */
.edit-container {
    padding: 10px 0;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
    color: #8e44ad;
    font-weight: 500;
}

.back-link i {
    margin-right: 5px;
}

.edit-container h2 {
    margin-bottom: 25px;
}

.contents-links {
    margin-bottom: 25px;
}

.creator-links {
    margin-bottom: 25px;
}

.creator-links h3 {
    margin-bottom: 15px;
}

.creator-links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.creator-toggle {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.creator-toggle.theme-fj h4 {
    background-color: #005A5A;
}

.creator-toggle.theme-hyt h4 {
    background-color: #006400;
}

.creator-toggle h4 {
    margin: 0;
    padding: 15px 20px;
    color: white;
    font-size: 1.1em;
}

.creator-links-content {
    padding: 10px 0;
}

.creator-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
}

.creator-link:hover {
    background-color: #f5f5f5;
}

.creator-link i:first-child {
    width: 24px;
    margin-right: 12px;
}

.creator-link span {
    flex: 1;
}

.creator-link .fa-chevron-right {
    color: #ccc;
    font-size: 0.9em;
}

.theme-fj .creator-link i:first-child {
    color: #005A5A;
}

.theme-hyt .creator-link i:first-child {
    color: #006400;
}

/* --- Quick Links --- */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    text-align: center;
}

@media (min-width: 768px) {
    .quick-links-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.quick-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: transform 0.2s, box-shadow 0.2s;
    word-break: break-word;
    overflow-wrap: break-word;
}

.quick-link-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quick-link-item i {
    font-size: 2.2em;
    margin-bottom: 10px;
}

.quick-link-item span {
    line-height: 1.3;
}

/* Theme colors for quick links */
.quick-link-item.theme-fj i {
    color: #008080;
}

.quick-link-item.theme-hyt i {
    color: #2E8B57;
}


.action-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #ff69b4;
    /* Hot pink */
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

.action-button:hover {
    background-color: #ff85c1;
}

select {
    width: 100%;
    padding: 15px;
    border: 1px solid #dfe6e9;
    border-radius: 8px;
    box-sizing: border-box;
    background-color: #f7f8fa;
    transition: all 0.3s ease;
    font-family: inherit;
    /* textareaにフォントを継承 */
    appearance: none;
    /* デフォルトの矢印を消す */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

/* Fan Team Banner Style */
.fan-team-banner {
    background-color: #8e44ad;
    /* Purple theme color */
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

.fan-team-banner p {
    margin: 0;
}

/* --- Invite Type Radio Buttons --- */
.form-group input[type="radio"] {
    accent-color: #8e44ad;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
    cursor: pointer;
}

.form-group>div {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.form-group>div:last-child {
    margin-bottom: 0;
}

.form-group label[for="fukyou"],
.form-group label[for="suteaka"] {
    font-weight: 500;
    color: #34495e;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 0;
}

/* --- Custom Modal (Replaces Bootstrap Modal) --- */
.custom-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Black w/ opacity */
    align-items: center;
    /* Center vertically */
    justify-content: center;
    /* Center horizontally */
}

.custom-modal.show {
    display: flex;
}

.custom-modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
    max-width: 500px;
    width: 100%;
}

.custom-modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 0.3rem;
    outline: 0;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .5);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.custom-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}

.custom-modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 1.25rem;
    font-weight: 500;
}

.custom-modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}

.custom-modal-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
}

/* Quiz Specific Modal Styles */
.quiz-modal-header {
    background: linear-gradient(to right, #006400, #005A5A);
    /* Hayato (Green) to Tsukasa (Teal) */
    color: white;
}

.quiz-title {
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.1em;
}

.quiz-question-card {
    margin-bottom: 1rem;
    background-color: #f8f9fa;
    /* bg-light */
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
}

.quiz-question-body {
    padding: 1.25rem;
    text-align: center;
}

.quiz-question-text {
    margin-bottom: 0;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.2;
}

.quiz-choices-grid {
    display: grid;
    gap: 0.5rem;
}

.btn-quiz-choice,
.btn-quiz-start {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    cursor: pointer;
    user-select: none;
    background-image: none !important;
    /* Override global button style */
    background-color: white !important;
    border: 2px solid #005A5A !important;
    /* Tsukasa Color */
    border-radius: 0.25rem;
    color: #005A5A !important;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    /* spacing */
}

.btn-quiz-choice:hover,
.btn-quiz-choice:focus,
.btn-quiz-start:hover,
.btn-quiz-start:focus {
    background: linear-gradient(to right, #006400, #005A5A) !important;
    color: white !important;
    border-color: transparent !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-quiz-choice.correct,
.btn-quiz-start.correct {
    background-color: #28a745 !important;
    background-image: none !important;
    border-color: #28a745 !important;
    color: white !important;
}

.btn-quiz-choice.incorrect,
.btn-quiz-start.incorrect {
    background-color: #dc3545 !important;
    background-image: none !important;
    border-color: #dc3545 !important;
    color: white !important;
}

.quiz-rules-link {
    font-size: 80%;
    color: #6c757d;
    text-decoration: none;
}

.quiz-rules-link:hover {
    color: #495057;
    text-decoration: underline;
}

.text-right {
    text-align: right;
}

.mt-2 {
    margin-top: 0.5rem;
}

/* Rule Section for quiz_rules.php */
.rule-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
}

/* Quiz Selection Buttons */
.btn-quiz-select {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
    font-weight: bold;
    color: white;
    border: none;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    background-image: none !important;
    /* Reset default gradient */
}

.btn-quiz-select.theme-fj {
    background: linear-gradient(135deg, #005A5A, #008080) !important;
    box-shadow: 0 4px 10px rgba(0, 90, 90, 0.3);
}

.btn-quiz-select.theme-hyt {
    background: linear-gradient(135deg, #006400, #2E8B57) !important;
    box-shadow: 0 4px 10px rgba(0, 100, 0, 0.3);
}

.btn-quiz-select:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.btn-quiz-select:active {
    transform: translateY(0);
}

.quiz-bonus-text {
    display: none;
    font-size: 0.8em;
    width: 100%;
    margin-top: 2px;
}

/* Quiz Answer Modal Text */
#correctAnswerDisplay {
    font-size: 1.5em;
    margin: 15px 0;
    padding: 10px;
    background-color: #f8d7da;
    border-radius: 5px;
    color: #721c24;
}