/* 記事57専用スタイル */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
.category-tax-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.article-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.publish-date,
.reading-time {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 15px;
}

/* 目次スタイル */
.toc-container {
    background: #f8f9fa;
    padding: 30px 0;
    margin-bottom: 40px;
    border-left: 4px solid #667eea;
}

.toc-header h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.toc-list li:before {
    content: counter(item);
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 0;
    background: #667eea;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.toc-list {
    counter-reset: item;
}

.toc-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.toc-list a:hover {
    color: #667eea;
}

/* コンテンツセクション */
.content-section {
    margin-bottom: 60px;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.content-section:last-child {
    border-bottom: none;
}

.content-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
}

.content-section h3 {
    font-size: 1.4rem;
    color: #444;
    margin: 30px 0 20px 0;
    padding-left: 15px;
    border-left: 4px solid #667eea;
}

.content-section p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

/* チャートコンテナ */
.chart-container-57 {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.chart-container-57 h3 {
    text-align: center;
    margin-bottom: 25px;
    color: #212529;
    border: none;
    padding: 15px 20px;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6;
}

.chart-placeholder {
    min-height: 300px;
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 16px;
}

/* 円グラフ用スタイル */
.pie-chart {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    gap: 40px;
}

.pie-visual {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
    background: conic-gradient(
        #667eea 0deg 162deg,
        #764ba2 162deg 252deg,
        #f093fb 252deg 306deg,
        #f5576c 306deg 342deg,
        #4facfe 342deg 360deg
    );
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 300px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.legend-item:hover {
    background: #e9ecef;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    flex-shrink: 0;
}

.legend-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* 棒グラフ用スタイル - ラベル位置修正版 */
.bar-chart {
    display: flex;
    justify-content: space-evenly;
    align-items: end;
    height: 500px; /* さらに高さを増加 */
    padding: 30px 30px 150px 80px; /* 下部パディングをさらに増加 */
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    gap: 20px;
    position: relative;
    overflow: visible;
    border: 2px solid #dee2e6;
}

/* X軸（水平軸）の位置調整 */
.bar-chart::before {
    content: '';
    position: absolute;
    left: 80px;
    right: 30px;
    bottom: 150px; /* ラベル用スペースをさらに確保 */
    height: 3px;
    background: #343a40;
    z-index: 1;
}

/* Y軸（垂直軸）の位置調整 */
.y-axis-line {
    position: absolute;
    left: 80px;
    top: 30px;
    bottom: 150px; /* ラベル用スペースをさらに確保 */
    width: 3px;
    background: #343a40;
    z-index: 1;
}

.bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 120px;
    position: relative;
    z-index: 3;
    bottom: 3px;
}

.bar {
    width: 70px;
    min-height: 5px;
    border-radius: 8px 8px 0 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin-bottom: 0; /* マージンを削除 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
    border-radius: 6px 6px 0 0;
}

.bar:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    filter: brightness(1.1);
}

/* 金額ラベルをX軸の下に配置 */
.bar-label {
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.3;
    white-space: pre-line;
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6;
    position: absolute;
    bottom: -90px; /* X軸の下に配置 */
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
}

/* パーセンテージ値もグリッド外に配置 */
.bar-value {
    font-size: 18px;
    font-weight: 800;
    color: #212529;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 50px;
    border: 2px solid #dee2e6;
    position: absolute;
    bottom: -130px; /* ラベルのさらに下に配置 */
    left: 50%;
    transform: translateX(-50%);
}

.bar-value::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, transparent 100%);
    border-radius: 6px 6px 0 0;
}

/* Y軸目盛りの位置調整 */
.bar-chart-y-axis {
    position: absolute;
    left: 10px;
    top: 30px;
    bottom: 150px; /* ラベル用スペースをさらに確保 */
    width: 65px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding-right: 12px;
    z-index: 2;
}

.y-axis-label {
    font-size: 14px;
    color: #495057;
    font-weight: 600;
    line-height: 1;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6;
}

/* グリッドラインの位置調整 */
.grid-line {
    position: absolute;
    left: 80px;
    right: 30px;
    height: 1px;
    background: linear-gradient(90deg, #adb5bd 0%, rgba(173, 181, 189, 0.3) 100%);
    z-index: 1;
}

.grid-line:nth-child(even) {
    background: linear-gradient(90deg, #ced4da 0%, rgba(206, 212, 218, 0.3) 100%);
}

/* バーの色別スタイル */
.bar[data-color="blue"] {
    background: linear-gradient(180deg, #4facfe 0%, #00f2fe 100%);
}

.bar[data-color="purple"] {
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.bar[data-color="dark-purple"] {
    background: linear-gradient(180deg, #764ba2 0%, #667eea 100%);
}

.bar[data-color="pink"] {
    background: linear-gradient(180deg, #f093fb 0%, #f5576c 100%);
}

.bar[data-color="red"] {
    background: linear-gradient(180deg, #f5576c 0%, #f093fb 100%);
}

/* アニメーション効果 */
@keyframes barGrowUp {
    0% {
        height: 0;
        opacity: 0;
        transform: scaleY(0);
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
        transform: scaleY(1);
    }
}

.bar.animate {
    animation: barGrowUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transform-origin: bottom;
}

/* ツールチップ強化 */
#chart-tooltip {
    position: fixed;
    background: linear-gradient(135deg, rgba(33, 37, 41, 0.95) 0%, rgba(52, 58, 64, 0.95) 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    z-index: 1000;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

#chart-tooltip::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(33, 37, 41, 0.95);
}

/* タイムライン */
.timeline-container-57 {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.timeline-placeholder {
    min-height: 250px;
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 16px;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #667eea;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: #667eea;
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    z-index: 2;
    margin: 0 20px;
}

.timeline-event {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    flex: 1;
    max-width: 300px;
    font-weight: 500;
    color: #333;
}

/* インタラクティブカード */
.interactive-card-57 {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.interactive-card-57 h3 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
    border: none;
    padding: 0;
}

/* 税金シミュレーター */
.tax-simulator-57 {
    background: white;
    border-radius: 8px;
    padding: 25px;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.tax-simulator-57 button,
.risk-checker-57 button {
    background: #667eea;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.tax-simulator-57 button:hover,
.risk-checker-57 button:hover {
    background: #5a67d8;
}

.result-display {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #667eea;
    display: none;
}

.result-display.show {
    display: block;
}

.tax-breakdown {
    margin-bottom: 20px;
}

.tax-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

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

.tax-item.highlight {
    background: #fff3cd;
    padding: 10px;
    border-radius: 4px;
    font-weight: 600;
}

.tax-label {
    color: #333;
}

.tax-value {
    color: #667eea;
    font-weight: 600;
}

.tax-advice {
    background: #e7f3ff;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #007bff;
}

.tax-advice p {
    margin: 5px 0;
    color: #333;
}

/* リスクチェッカー */
.risk-checker-57 {
    background: white;
    border-radius: 8px;
    padding: 25px;
}

.question-group {
    margin-bottom: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
}

.question-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.question-group input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: #667eea;
}

.risk-assessment {
    text-align: center;
}

.risk-score {
    margin-bottom: 20px;
}

.risk-score h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.risk-percentage {
    font-size: 2rem;
    font-weight: 700;
}

.risk-advice {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: left;
}

.risk-details {
    text-align: left;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}

.progress-fill {
    height: 100%;
    transition: width 0.3s ease;
    border-radius: 10px;
}

/* チェックリスト */
.checklist-container-57 {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.checklist-container-57 h3 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
    border: none;
    padding: 0;
}

.checklist-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist-items li {
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.checklist-items li:hover {
    background: #e9ecef;
}

.checklist-items label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.checklist-items input[type="checkbox"] {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    accent-color: #667eea;
}

/* フッター */
.article-footer {
    background: #f8f9fa;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid #eee;
}

.footer-content {
    text-align: center;
}

.disclaimer {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.disclaimer h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.disclaimer p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

/* 追加のアニメーション */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toc-list a.active {
    color: #667eea;
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .content-section h2 {
        font-size: 1.6rem;
    }
    
    .content-section h3 {
        font-size: 1.2rem;
    }
    
    .chart-container-57,
    .timeline-container-57,
    .interactive-card-57,
    .checklist-container-57 {
        padding: 20px;
        margin: 20px 0;
    }
    
    .tax-simulator-57,
    .risk-checker-57 {
        padding: 20px;
    }
    
    .pie-chart {
        flex-direction: column;
        gap: 20px;
    }
    
    .pie-visual {
        width: 150px;
        height: 150px;
    }
    
    .bar-chart {
        height: 450px;
        padding: 25px 25px 130px 70px;
        gap: 15px;
    }
    
    .bar {
        width: 55px;
    }
    
    .bar-chart-y-axis {
        width: 55px;
        left: 8px;
        bottom: 130px;
    }
    
    .bar-label {
        font-size: 11px;
        min-height: 28px;
        padding: 4px 6px;
        bottom: 75px;
        width: 65px;
    }
    
    .bar-value {
        font-size: 14px;
        padding: 4px 8px;
        bottom: 35px;
    }
    
    .bar-chart::before {
        left: 70px;
        bottom: 130px;
    }
    
    .grid-line {
        left: 70px;
    }
    
    .y-axis-line {
        left: 70px;
        bottom: 130px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 50px;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: row !important;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        margin: 0;
    }
    
    .timeline-event {
        max-width: none;
        margin-left: 20px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 0 15px;
    }
    
    .article-header {
        padding: 40px 0;
    }
    
    .article-header h1 {
        font-size: 1.5rem;
    }
    
    .content-section {
        padding: 20px 0;
    }
    
    .interactive-card-57,
    .chart-container-57,
    .timeline-container-57,
    .checklist-container-57 {
        padding: 15px;
    }
    
    .pie-visual {
        width: 120px;
        height: 120px;
    }
    
    .bar-chart {
        height: 400px;
        padding: 20px 20px 110px 60px;
        gap: 10px;
    }
    
    .bar {
        width: 45px;
    }
    
    .bar-chart-y-axis {
        width: 50px;
        left: 5px;
        bottom: 110px;
    }
    
    .bar-label {
        font-size: 10px;
        min-height: 24px;
        padding: 3px 4px;
        bottom: 65px;
        width: 55px;
    }
    
    .bar-value {
        font-size: 12px;
        padding: 3px 6px;
        bottom: 30px;
    }
    
    .y-axis-label {
        font-size: 11px;
    }
    
    .bar-chart::before {
        left: 60px;
        bottom: 110px;
    }
    
    .grid-line {
        left: 60px;
    }
    
    .y-axis-line {
        left: 60px;
        bottom: 110px;
    }
    
    .tax-item {
        flex-direction: column;
        gap: 5px;
    }
}
/* リスクチェッカー用の追加スタイル */
.risk-checker-57 {
    background: white;
    border-radius: 8px;
    padding: 25px;
    position: relative;
}

.risk-checker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.risk-checker-reset {
    background: #6c757d;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.risk-checker-reset:hover {
    background: #5a6268;
}

.question-group {
    margin-bottom: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.question-group:hover {
    background: #e9ecef;
    transform: translateX(2px);
}

.question-group.checked {
    background: #d4edda;
    border-left: 4px solid #28a745;
}

.question-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.3s ease;
}

.question-group input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: #667eea;
    cursor: pointer;
}

.question-group input[type="checkbox"]:checked + span {
    color: #28a745;
}

.risk-assessment {
    text-align: center;
    animation: fadeInUp 0.5s ease;
}

.risk-score {
    margin-bottom: 20px;
}

.risk-score h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.risk-percentage {
    font-size: 2.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.risk-advice {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: left;
    border-left: 4px solid #667eea;
}

.risk-details {
    text-align: left;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}

.progress-fill {
    height: 100%;
    transition: width 0.5s ease;
    border-radius: 10px;
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 完了メッセージ用のアニメーション */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
/* alert-box（まとめ・注意・警告等）のスタイル */
.is-style-alert-box::before,
.alert-box::before,
.alert::before {
  border-right: 0;
}

.alert-box strong {
    font-weight: bold;
}


/* レスポンシブ対応 */
@media (max-width: 600px) {
    .alert-box {
        font-size: 0.97em;
        padding: 0.8em 1em 0.8em 2.5em;
    }
    .alert-box .alert-icon {
        width: 22px;
        height: 22px;
        font-size: 1em;
    }
}
