﻿/* 画像モーダル用スタイル（改良版） */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .image-modal.active {
        opacity: 1;
        visibility: visible;
    }

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    z-index: 1001;
    animation: zoom-in 0.3s ease;
}

@keyframes zoom-in {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

#modal-image {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.modal-close-btn {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

    .modal-close-btn:hover {
        background: rgba(255, 255, 255, 0.4);
        transform: scale(1.1);
    }

/* モーダルナビゲーション（前・次ボタン） */
.modal-navigation {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none; /* ボタン以外はクリックイベントを透過 */
}

.modal-prev-btn,
.modal-next-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    pointer-events: auto; /* ボタン自体はクリック可能に */
}

    .modal-prev-btn:hover,
    .modal-next-btn:hover {
        background: rgba(0, 0, 0, 0.7);
        border-color: rgba(255, 255, 255, 0.6);
        transform: scale(1.1);
    }

/* コピー通知のスタイル */
.copy-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(25, 135, 84, 0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
}

    .copy-notification.show {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    .copy-notification i {
        font-size: 1.2rem;
    }

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .modal-close-btn {
        top: -30px;
        right: 0;
    }

    .modal-navigation {
        padding: 0 10px;
    }

    .modal-prev-btn,
    .modal-next-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .modal-content {
        max-width: 95%;
    }
}

/* コンテンツ幅の調整 - 将来の広告スペース確保 */
.blog-container {
    max-width: 1280px; /* 全体の最大幅を制限 */
    margin: 0 auto; /* 中央揃え */
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.blog-main {
    flex: 1;
    max-width: 1280px; /* メインコンテンツの最大幅 */
    width: 100%;
}

.blog-sidebar {
    width: 350px; /* サイドバーの幅を固定 */
}
/* ブレッドクラムナビゲーションのコンテナ調整 */
.breadcrumb-container {
    width: 100%;
    /*margin-bottom: 2rem;*/
}

.breadcrumb {
    margin-bottom: 0;
}
/* レスポンシブ調整を更新 */
@media (max-width: 1280px) {
    .blog-container {
        /*padding: 0 1.5rem;*/
    }
}

@media (max-width: 1024px) {
    .blog-main {
        max-width: 650px;
    }
}

@media (max-width: 768px) {
    .blog-container {
        flex-direction: column;
    }

    .blog-main,
    .blog-sidebar {
        max-width: 100%;
        width: 100%;
    }
}

/* ブログ投稿詳細ページのスタイル */
.blog-post-page {
    padding: 1rem 0.1rem;
    min-height: 100vh;
}

/* パンくずナビ - 改善版 */
.breadcrumb {
    margin-bottom: 2rem;
    text-align: left; /* 中央揃えから左揃えに変更 */
}

    .breadcrumb a {
        background: rgba(25, 25, 35, 0.85); /* サイト全体のカード色と合わせる */
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.2); /* ボーダーを薄く */
        padding: 0.6rem 1.2rem;
        border-radius: 16px; /* 他の要素と合わせたボーダー半径 */
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* 他の要素と合わせたシャドウ */
        border-top: 2px solid #ff7e5f; /* アクセントカラーのトップボーダー */
    }

        .breadcrumb a:hover {
            background: rgba(35, 35, 45, 0.9);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .breadcrumb a i {
            color: rgba(255, 255, 255, 0.9);
        }

/* 記事本体 */
.blog-post {
    background: rgba(25, 25, 35, 0.85);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 2.5rem;
    position: relative;
    border-top: 4px solid #ff7e5f;
}

    /* 記事ヘッダー */
    .blog-post .post-header {
        padding: 2rem 2rem 1rem;
    }

    .blog-post .header-content {
        text-align: center;
    }

    .blog-post h1 {
        color: white;
        font-size: 2rem;
        margin-bottom: 1.5rem;
        text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }

/* タグセクション */
.tags-section {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

    .tags-section .tag {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        padding: 0.4rem 0.8rem;
        border-radius: 20px;
        text-decoration: none;
        font-size: 0.85rem;
        transition: all 0.3s ease;
        border: none;
    }

        .tags-section .tag:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

/* アイキャッチ画像 */
.featured-image {
    text-align: center;
    margin: 0 auto 1.5rem;
    max-width: 900px;
    overflow: hidden;
    border-radius: 8px;
}

    .featured-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.blog-post:hover .featured-image img {
    transform: scale(1.02);
}

/* 記事内容 */
.blog-post .post-content {
    padding: 1.5rem 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.05rem;
}

    .blog-post .post-content h2 {
        margin-top: 2rem;
        margin-bottom: 1rem;
        color: white;
        font-size: 1.7rem;
        position: relative;
        padding-bottom: 0.5rem;
    }

        .blog-post .post-content h2::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #ff7e5f, #feb47b);
        }

    .blog-post .post-content h3 {
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
        color: white;
        font-size: 1.4rem;
    }

    /*.blog-post .post-content p {
        margin-bottom: 1.5rem;
    }*/

    .blog-post .post-content a {
        color: #feb47b;
        text-decoration: none;
        border-bottom: 1px solid rgba(254, 180, 123, 0.3);
        transition: all 0.2s ease;
    }

        .blog-post .post-content a:hover {
            color: #ff7e5f;
            border-bottom-color: #ff7e5f;
        }

    .blog-post .post-content code {
        background: rgba(255, 255, 255, 0.1);
        color: #ff7e5f;
        /*padding: 0.2rem 0.4rem;*/
        border-radius: 4px;
        font-family: monospace;
    }

    .blog-post .post-content pre {
        background: rgba(0, 0, 0, 0.2);
        padding: 0.5rem;
        border-radius: 8px;
        overflow-x: auto;
        /*margin: 1.5rem 0;*/
    }

    .blog-post .post-content blockquote {
        border-left: 4px solid #ff7e5f;
        padding: 1rem 1.5rem;
        /*margin: 1.5rem 0;*/
        background: rgba(255, 255, 255, 0.05);
        font-style: italic;
    }

/* 記事フッター */
.blog-post .post-footer {
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.post-meta-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

    .post-meta-bottom span {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.95rem;
    }

    .post-meta-bottom i {
        color: #ff7e5f;
    }

/* 目次 */
.table-of-contents {
    background: rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .table-of-contents h4 {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
        color: white;
        font-size: 1.1rem;
    }

    .table-of-contents ul {
        padding-left: 1.5rem;
        margin: 0;
    }

    .table-of-contents li {
        margin-bottom: 0.5rem;
        list-style-type: none;
    }

    .table-of-contents a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.2s ease;
        display: inline-block;
        padding: 0.3rem 0;
    }

        .table-of-contents a:hover {
            color: #ff7e5f;
            transform: translateX(3px);
        }

.toc-h3 {
    margin-left: 1.5rem;
}

/* 読了時間 */
.reading-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* 関連記事 */
.related-posts {
    margin-top: 3rem;
}

    .related-posts h3 {
        color: white;
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.related-post-card {
    background: rgba(25, 25, 35, 0.85);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    border-top: 4px solid #ff7e5f;
    height: 100%;
}

    .related-post-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    }

.related-post-image {
    height: 150px;
    overflow: hidden;
}

    .related-post-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.related-post-card:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-card h4 {
    padding: 1rem 1.2rem 0.5rem;
    margin: 0;
}

    .related-post-card h4 a {
        color: white;
        text-decoration: none;
        font-size: 1.1rem;
        line-height: 1.4;
        transition: color 0.2s ease;
    }

        .related-post-card h4 a:hover {
            color: #ff7e5f;
        }

.related-post-meta {
    padding: 0 1.2rem 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.related-post-tags {
    padding: 0 1.2rem 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

    .related-post-tags .tag {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        padding: 0.2rem 0.6rem;
        border-radius: 12px;
        font-size: 0.75rem;
    }

/* サイドバーポスト */
.sidebar-post-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sidebar-post-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.8rem;
}

    .sidebar-post-item:last-child {
        border-bottom: none;
    }

.sidebar-post-link {
    display: block;
    text-decoration: none;
    color: white;
    transition: all 0.2s ease;
}

    .sidebar-post-link:hover {
        transform: translateX(5px);
    }

.sidebar-post-title {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.sidebar-post-meta {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.post-date, .post-views {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
    .blog-post .post-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .blog-post .post-content {
        padding: 1rem 1.5rem;
    }

    .blog-post h1 {
        font-size: 1.8rem;
    }

    .post-meta-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .breadcrumb {
        margin-bottom: 1.5rem;
        width: 100%; /* モバイルでは幅いっぱいに */
    }

        .breadcrumb a {
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
            width: 100%; /* モバイルでは幅いっぱいに */
            justify-content: center; /* モバイルでは中央揃え */
        }
}
/* シリーズナビゲーション */
.series-navigation {
    margin: 3rem 0 2rem;
    padding: 1.5rem;
    background: rgba(25, 25, 35, 0.85);
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-top: 4px solid #ff7e5f;
}

    .series-navigation .series-title {
        text-align: center;
        color: white;
        margin-bottom: 1.5rem;
        font-size: 1.4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

.series-navigation-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.nav-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 100px;
    display: flex;
    overflow: hidden;
}

    .nav-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

.nav-card-link {
    padding: 1.2rem;
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: background 0.2s ease;
}

    .nav-card-link:hover {
        background: rgba(255, 255, 255, 0.05);
    }

.prev-card .nav-card-link {
    align-items: flex-start;
    border-left: 4px solid #ff7e5f;
}

.next-card .nav-card-link {
    align-items: flex-end;
    text-align: right;
    border-right: 4px solid #ff7e5f;
}

.nav-card-direction {
    font-size: 0.9rem;
    color: #ff7e5f;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-card-title {
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
}

.empty-card {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.series-link-container {
    text-align: center;
}

.series-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

    .series-link:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .series-navigation-cards {
        grid-template-columns: 1fr;
    }

    .nav-card {
        min-height: 80px;
    }

    .next-card {
        order: -1;
    }
}

/* 記事上部のメタ情報スタイル */
.post-meta-header {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

    .post-meta-header span {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.95rem;
    }

    .post-meta-header i {
        color: #ff7e5f;
    }

/* 読了時間のスタイル調整 */
.reading-time {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .post-meta-header {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
}

/* 記事内の埋め込み記事カード */
.post-content .article-card {
    display: flex;
    background: rgba(30, 35, 45, 0.6);
    border-radius: 12px;
    overflow: hidden;
    margin: 1.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: white;
}

    .post-content .article-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        background: rgba(40, 45, 60, 0.7);
    }

.post-content .article-card-image {
    width: 120px;
    height: 120px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.post-content .article-card-content {
    padding: 1rem;
    flex-grow: 1;
}

.post-content .article-card-title {
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    color: white;
    font-weight: 600;
}

.post-content .article-card-summary {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 576px) {
    .post-content .article-card {
        flex-direction: column;
    }

    .post-content .article-card-image {
        width: 100%;
        height: 140px;
    }
}

/* リスト表示の基本スタイル */
.post-content ul, .post-content ol {
    padding-left: 2em;
    margin-bottom: 1em;
    list-style-position: outside;
}

.post-content ul {
    list-style-type: disc;
}

.post-content ol {
    list-style-type: decimal;
}

    .post-content ul li, .post-content ol li {
        margin-bottom: 0.5em;
        display: list-item; /* これが重要 */
    }

/* コードブロック内のリスト */
.post-content pre code ul,
.post-content pre code ol {
    padding-left: 1.5em;
}

/* 追加: 画像表示用のスタイル改善 */
.editor-image-container {
    margin: 1.5rem 0;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

    .editor-image-container img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
    }

    /* 表示専用モード（削除ボタンなし）のスタイル */
    .editor-image-container.view-only {
        border: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }

        .editor-image-container.view-only:hover {
            transform: scale(1.01);
        }

        /* 削除ボタンを完全に非表示 */
        .editor-image-container.view-only .image-toolbar {
            display: none;
        }

/* 言語ごとのタブサイズ設定 */
.code-block[data-language="python"] code,
.code-block[data-language="csharp"] code {
    tab-size: 4;
    -moz-tab-size: 4;
}

.code-block[data-language="javascript"] code,
.code-block[data-language="html"] code,
.code-block[data-language="css"] code {
    tab-size: 2;
    -moz-tab-size: 2;
}

/* 各言語固有のシンタックスハイライト調整 */
.code-block[data-language="csharp"] .token.keyword {
    color: #569CD6;
}

.code-block[data-language="javascript"] .token.keyword {
    color: #C586C0;
}

/* コードブロックの基本スタイル改善 */
.post-content .code-block code {
    white-space: pre;
    tab-size: 4;
    -moz-tab-size: 4;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
}

.post-content pre code {
    display: block;
    overflow-x: auto;
    padding: 1em;
}

/* コードブロックのスクロール対応 - 末尾に追加 */
.post-content pre {
    max-height: 400px;
    overflow-y: auto;
    position: relative;
    margin-top: 10px !important;
    overflow-x: auto !important;
}

    /* スクロールバーのデザイン調整 */
    .post-content pre::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    .post-content pre::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 4px;
    }

    .post-content pre::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 4px;
    }

        .post-content pre::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.4);
        }

/* 言語ラベルを固定表示（スクロール時も見えるように） */
.code-language-label {
    position: absolute !important;
    top: -25px !important;
    right: 0 !important;
    background-color: #444 !important;
    color: #fff !important;
    padding: 4px 12px !important;
    border-radius: 4px 4px 0 0 !important;
    font-size: 12px !important;
    font-family: Consolas, Monaco, "Andale Mono", monospace !important;
    text-transform: uppercase !important;
    z-index: 10 !important;
    box-shadow: 0 -1px 3px rgba(0,0,0,0.2) !important;
    font-weight: bold !important;
}

/* WebP画像対応のスタイル */
.post-content img {
    max-width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
}

    /* 遅延読み込み画像のプレースホルダー */
    .post-content img[data-src] {
        opacity: 0;
    }

    /* 画像読み込み完了時のアニメーション */
    .post-content img.loaded {
        opacity: 1;
    }

/* 画像拡大表示関連 */
.image-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.image-format-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
}