/* ========================================
   RCアーカイブ専用スタイルシート
   落ち着いた配色・読みやすさ重視
======================================== */

/* カラーパレット */
:root {
    /* メインカラー */
    --archive-primary: #2c3e50;
    --archive-secondary: #34495e;
    --archive-accent: #3498db;
    
    /* 背景色 */
    --archive-bg: #f8f9fa;
    --archive-card-bg: #ffffff;
    
    /* テキスト */
    --archive-text: #2c3e50;
    --archive-text-light: #7f8c8d;
    
    /* ボーダー */
    --archive-border: #dfe6e9;
    
    /* ホバー */
    --archive-hover: #e8f4f8;
}

/* リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    background-color: var(--archive-bg);
    color: var(--archive-text);
    line-height: 1.8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 機種詳細ページ用のコンテナ */
.model-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* コンテンツセクション */
.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 1.8rem;
    color: var(--archive-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--archive-accent);
}

/* テーブルスタイル（機種詳細ページ用） */
.model-detail table,
.content-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--archive-card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.model-detail th,
.content-section th {
    background: var(--archive-primary);
    color: white;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    width: 30%;
}

.model-detail td,
.content-section td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--archive-border);
}

.model-detail tr:last-child td,
.content-section tr:last-child td {
    border-bottom: none;
}

.model-detail tr:nth-child(even),
.content-section tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* 機種画像 */
.model-image {
    text-align: center;
    margin: 30px 0;
}

.model-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.image-credit {
    margin-top: 10px;
    font-size: 0.9em;
    color: #666;
}

/* セクションタイトル */
.model-detail section h2,
.model-detail section h3 {
    color: var(--archive-primary);
    margin-top: 30px;
    margin-bottom: 15px;
}

.model-detail section h2 {
    font-size: 1.8rem;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--archive-accent);
}

.model-detail section h3 {
    font-size: 1.4rem;
}

/* リストスタイル */
.model-detail ul {
    list-style: none;
    padding-left: 0;
}

.model-detail li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.model-detail li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--archive-accent);
    font-weight: bold;
}

/* 修理難易度 */
.difficulty-stars {
    color: #ffc107;
    font-size: 1.3em;
    font-weight: bold;
}

.repair-difficulty {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

/* 情報ボックス */
.tb05r-details,
.ta08r-details {
    background: var(--archive-card-bg);
    border: 2px solid var(--archive-accent);
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
}

.tb05r-note,
.ta08r-note {
    background: #d1ecf1;
    border-left: 4px solid #0c5460;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}

/* ボタングループ */
.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* ========================================
   ヘッダー
======================================== */
.archive-header {
    background: linear-gradient(135deg, var(--archive-primary) 0%, var(--archive-secondary) 100%);
    color: white;
    padding: 60px 20px 40px;
    text-align: center;
}

.archive-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.archive-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* 言語切り替えボタン */
.language-switcher {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.lang-btn.active {
    background: white;
    color: var(--archive-primary);
    border-color: white;
}

/* パンくずナビ */
.breadcrumb {
    margin-top: 20px;
    padding: 10px 0;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
}

.breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* ヘッダー内のメインサイトに戻るボタンを強調 */
.archive-header .breadcrumb {
    margin-top: 25px;
}

.archive-header .breadcrumb a {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 1;
}

.archive-header .breadcrumb a:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

/* データベースページ用のパンくずナビ（ページ上部） */
body > nav.breadcrumb {
    background: var(--archive-primary);
    color: white;
    padding: 15px 20px;
    margin: 0;
}

body > nav.breadcrumb a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

body > nav.breadcrumb a:hover {
    text-decoration: underline;
    opacity: 1;
}

body > nav.breadcrumb span {
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   メインコンテンツ
======================================== */
.archive-main {
    padding: 40px 20px;
}

/* 統計情報 */
.archive-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.stat-card {
    background: var(--archive-card-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--archive-accent);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--archive-text-light);
}

/* セクション */
.browse-section,
.search-section,
.about-section {
    margin-bottom: 60px;
}

.browse-section h2,
.search-section h2,
.about-section h2 {
    font-size: 2rem;
    color: var(--archive-primary);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--archive-accent);
}

/* 検索ボックス */
.search-box {
    display: flex;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.search-box input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--archive-border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--archive-accent);
}

.search-box button {
    background: var(--archive-accent);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.search-box button:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* カードグリッド */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.card-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.browse-card,
.browse-card-large {
    background: var(--archive-card-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: var(--archive-text);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.browse-card:hover,
.browse-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    border-color: var(--archive-accent);
    background: var(--archive-hover);
}

.browse-card h3,
.browse-card-large h3 {
    font-size: 1.5rem;
    color: var(--archive-primary);
    margin-bottom: 10px;
}

.browse-card p,
.browse-card-large p {
    color: var(--archive-text-light);
    font-size: 0.95rem;
}

.browse-card-large h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.browse-card-large p {
    font-size: 1rem;
}

/* 年代グリッド */
.era-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.era-card {
    background: var(--archive-card-bg);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--archive-text);
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.era-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    border-color: var(--archive-accent);
    background: var(--archive-hover);
}

.era-card h3 {
    font-size: 1.2rem;
    color: var(--archive-primary);
    margin-bottom: 5px;
}

.era-card p {
    color: var(--archive-text-light);
    font-size: 0.85rem;
}

/* アーカイブについて */
.about-content {
    background: var(--archive-card-bg);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    line-height: 2;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* ========================================
   フッター
======================================== */
.archive-footer {
    background: var(--archive-primary);
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-top: 80px;
}

.archive-footer p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.archive-footer p:last-child {
    margin-bottom: 0;
}

/* ========================================
   データベース一覧ページ専用スタイル
======================================== */

/* 統計情報カード（database.html用） */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

/* 検索フィルターセクション */
.search-filter {
    background: var(--archive-card-bg);
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.search-filter h2 {
    font-size: 1.8rem;
    color: var(--archive-primary);
    margin-bottom: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-weight: 600;
    color: var(--archive-primary);
    font-size: 0.95rem;
}

.filter-group select,
.filter-group input {
    padding: 10px 15px;
    border: 2px solid var(--archive-border);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: var(--archive-accent);
}

/* テーブルスタイル */
.models-table {
    margin: 40px 0;
}

.models-table h2 {
    font-size: 1.8rem;
    color: var(--archive-primary);
    margin-bottom: 20px;
}

#modelsTable {
    width: 100%;
    border-collapse: collapse;
    background: var(--archive-card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

#modelsTable thead {
    background: linear-gradient(135deg, var(--archive-primary) 0%, var(--archive-secondary) 100%);
    color: white;
}

#modelsTable th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

#modelsTable td {
    padding: 15px;
    border-bottom: 1px solid var(--archive-border);
    vertical-align: middle;
}

/* 詳細リンクを含むセルの調整 */
#modelsTable td:last-child {
    text-align: center;
    min-width: 140px;
}

#modelsTable tbody tr {
    transition: background-color 0.2s ease;
}

#modelsTable tbody tr:hover {
    background-color: var(--archive-hover);
}

#modelsTable tbody tr:last-child td {
    border-bottom: none;
}

/* カテゴリーバッジ */
.category-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.category-badge.car {
    background: #3498db;
}

.category-badge.plane {
    background: #e74c3c;
}

.category-badge.heli {
    background: #9b59b6;
}

/* 生産状況バッジ */
.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-badge.available {
    background: #27ae60;
    color: white;
}

.status-badge.active {
    background: #27ae60;
    color: white;
}

.status-badge.discontinued {
    background: #95a5a6;
    color: white;
}

.status-badge.prototype {
    background: #e91e63;
    color: white;
}

/* 詳細リンク */
.detail-link {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
    text-align: center;
    min-width: 120px;
}

.detail-link:hover {
    background: linear-gradient(135deg, #2980b9 0%, #2472a4 100%);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.5);
    transform: translateY(-2px);
    text-decoration: none;
}

/* データベース説明セクション */
.database-description {
    margin: 30px 0;
}

.database-description-text {
    font-size: 1.1em;
    line-height: 1.8;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

/* データベースメインコンテンツ */
.database-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.database-main h1 {
    font-size: 2.5rem;
    color: var(--archive-primary);
    margin-bottom: 30px;
    text-align: center;
}

/* ========================================
   レスポンシブデザイン
======================================== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .database-main {
        padding: 30px 15px;
    }
    
    .search-filter {
        padding: 20px 15px;
        margin: 30px 0;
    }
    
    .database-description-text {
        padding: 15px;
        font-size: 1em;
    }
    
    .archive-title {
        font-size: 2rem;
    }
    
    .archive-subtitle {
        font-size: 1rem;
    }
    
    .language-switcher {
        flex-wrap: wrap;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    /* データベースリンクセクション */
    .database-link-section {
        padding: 20px 15px;
        margin: 30px 0;
    }
    
    .database-link-title {
        font-size: 1.3em;
        margin-bottom: 15px;
    }
    
    .database-link-button {
        padding: 16px 35px;
        font-size: 1.1em;
    }
    
    .database-link-desc {
        font-size: 0.9em;
        margin-top: 12px;
    }
    
    .card-grid,
    .card-grid-large {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .era-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .about-content {
        padding: 25px;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .archive-stats {
        grid-template-columns: 1fr;
    }
    
    #modelsTable {
        font-size: 0.8rem;
    }
    
    #modelsTable th,
    #modelsTable td {
        padding: 6px 2px;
    }
    
    /* スマホで各列の幅を最適化 */
    #modelsTable th:nth-child(1),
    #modelsTable td:nth-child(1) {
        display: none; /* カテゴリー列を非表示 */
    }
    
    #modelsTable th:nth-child(2),
    #modelsTable td:nth-child(2) {
        width: 38px;
        font-size: 0.75rem;
        padding: 8px 2px;
    }
    
    #modelsTable th:nth-child(3),
    #modelsTable td:nth-child(3) {
        width: 50px;
        font-size: 0.8rem;
        padding: 8px 3px;
    }
    
    #modelsTable th:nth-child(4),
    #modelsTable td:nth-child(4) {
        width: 38px;
        font-size: 0.75rem;
        padding: 8px 2px;
    }
    
    #modelsTable th:nth-child(5),
    #modelsTable td:nth-child(5) {
        width: 42px;
        font-size: 0.65rem;
        padding: 8px 2px;
    }
    
    #modelsTable th:nth-child(6),
    #modelsTable td:nth-child(6) {
        width: 48px;
        font-size: 0.75rem;
        padding: 8px 2px;
    }
    
    #modelsTable th:nth-child(7),
    #modelsTable td:nth-child(7) {
        width: 58px;
        padding: 8px 2px;
    }
    
    /* バッジのサイズ調整 */
    .status-badge {
        padding: 2px 4px;
        font-size: 0.6rem;
        border-radius: 6px;
        white-space: nowrap;
    }
    
    .category-badge {
        padding: 2px 4px;
        font-size: 0.6rem;
        border-radius: 6px;
    }
    
    /* スマホでの詳細リンク最適化 */
    .detail-link {
        display: inline-block;
        width: auto;
        padding: 6px 8px;
        min-width: auto;
        white-space: nowrap;
        font-size: 0;  /* 元のテキストを非表示 */
    }
    
    .detail-link::before {
        content: "詳細";
        font-size: 0.75rem;  /* 「詳細」のフォントサイズ */
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .database-main {
        padding: 25px 12px;
    }
    
    .search-filter {
        padding: 18px 12px;
        margin: 25px 0;
    }
    
    .database-description-text {
        padding: 12px;
        font-size: 0.95em;
    }
    
    .archive-header {
        padding: 40px 20px 30px;
    }
    
    .archive-title {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .browse-section h2,
    .search-section h2,
    .about-section h2 {
        font-size: 1.5rem;
    }
    
    /* データベースリンクセクション */
    .database-link-section {
        padding: 18px 12px;
        margin: 25px 0;
    }
    
    .database-link-title {
        font-size: 1.2em;
        margin-bottom: 12px;
    }
    
    .database-link-button {
        padding: 14px 30px;
        font-size: 1em;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .database-link-desc {
        font-size: 0.85em;
        margin-top: 10px;
    }
    
    /* 480px以下での詳細ボタン最適化 */
    .detail-link {
        padding: 6px 7px;
        font-weight: bold;
        border-radius: 6px;
        box-shadow: 0 2px 6px rgba(52, 152, 219, 0.3);
    }
    
    .detail-link::before {
        font-size: 0.7rem;  /* 480px以下では少し小さく */
    }
    
    /* テーブルのレイアウト調整 */
    #modelsTable {
        font-size: 0.75rem;
    }
    
    #modelsTable th,
    #modelsTable td {
        padding: 6px 2px;
    }
    
    /* さらに列幅を縮小 */
    #modelsTable th:nth-child(2),
    #modelsTable td:nth-child(2) {
        width: 35px;
        font-size: 0.7rem;
        padding: 6px 1px;
    }
    
    #modelsTable th:nth-child(3),
    #modelsTable td:nth-child(3) {
        width: 45px;
        font-size: 0.75rem;
        padding: 6px 2px;
    }
    
    #modelsTable th:nth-child(4),
    #modelsTable td:nth-child(4) {
        width: 35px;
        font-size: 0.7rem;
        padding: 6px 1px;
    }
    
    #modelsTable th:nth-child(5),
    #modelsTable td:nth-child(5) {
        width: 40px;
        font-size: 0.6rem;
        padding: 6px 1px;
    }
    
    #modelsTable th:nth-child(6),
    #modelsTable td:nth-child(6) {
        width: 45px;
        font-size: 0.7rem;
        padding: 6px 1px;
    }
    
    #modelsTable th:nth-child(7),
    #modelsTable td:nth-child(7) {
        width: 55px;
        padding: 6px 1px;
    }
    
    /* バッジをさらに縮小 */
    .status-badge {
        padding: 1px 3px;
        font-size: 0.55rem;
    }
    
    .category-badge {
        padding: 1px 3px;
        font-size: 0.55rem;
    }
}

/* ========================================
   印刷用スタイル
======================================== */
@media print {
    .language-switcher,
    .breadcrumb {
        display: none;
    }
    
    .archive-header {
        background: white;
        color: black;
        padding: 20px;
    }
    
    .browse-card,
    .browse-card-large,
    .era-card,
    .stat-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
/* ========================================
   データベースリンクセクション
======================================== */
.database-link-section {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.database-link-title {
    color: white;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.database-link-button {
    display: inline-block;
    padding: 20px 50px;
    background-color: white;
    color: #667eea;
    text-decoration: none !important;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.3em;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.database-link-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    text-decoration: none !important;
}

.database-link-button:visited,
.database-link-button:active,
.database-link-button:focus {
    text-decoration: none !important;
}

.database-link-desc {
    color: white;
    margin-top: 15px;
    font-size: 0.95em;
}

