* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #e0e0d5;
    color: #222;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    animation: fadeIn 0.5s ease-out;
}

header {
    text-align: center;
    margin-bottom: 8px;
    padding: 15px;
    background-color: #5c6bc0;
    color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header h1,
header h3 {
    color: white;
    margin-bottom: 0;
}

header h1 {
    font-size: 1.8rem;
}

/* 主导航菜单样式 */
.main-menu {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
    padding: 12px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.menu-label {
    font-weight: 600;
    color: #555;
    white-space: nowrap;
}



/* 图表区域样式 */
.chart-section {
    background-color: #fff;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.chart-section:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

#chartContainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 8px;
}

.chart-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.chart-item h4 {
    color: #34495e;
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-align: center;
}

.chart-item canvas {
    height: 400px !important;
    width: 100% !important;
}

/* 表格区域样式 */
.table-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
    position: sticky;
    top: 0;
    z-index: 10;
}

tr:hover {
    background-color: #f5f5f5;
}

td {
    color: #555;
}

/* 主内容区域布局 */
.main-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 12px;
    margin-top: 8px;
}

/* 侧边栏样式 */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* 主菜单布局重构 */
.sidebar .main-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 按钮容器样式 */
.sidebar .button-container {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

/* 调整按钮容器内菜单项的宽度 */
.sidebar .button-container .menu-item {
    flex: 1;
    min-width: calc(33.33% - 8px);
    max-width: none;
}

/* 菜单分组样式 */
.sidebar .menu-item {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 0;
    width: 100%;
}

/* 孔号选择器样式 */
.sidebar .menu-item:nth-child(2) {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
}

/* 菜单标签样式 */
.sidebar .menu-label {
    font-weight: 600;
    color: #555;
    font-size: 13px;
    white-space: nowrap;
    min-width: 40px;
}

/* 侧边栏菜单选择器样式 */
.sidebar .menu-select {
    flex: 1;
    padding: 6px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #fff;
    font-size: 13px;
    transition: all 0.3s ease;
    min-width: 0;
}



/* 内容区域样式 */
.content-area {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* 统一的响应式设计 */
@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 250px 1fr;
        gap: 10px;
    }
    
    /* 优化中等屏幕的图表布局 */
    #chartContainer {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }
}

@media (max-width: 900px) {
    /* 提前切换到垂直布局，改善平板体验 */
    .main-content {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    /* 容器和内边距调整 */
    .container {
        padding: 8px;
    }
    
    header {
        padding: 12px;
    }
    
    header h3 {
        font-size: 1.1rem;
    }
    
    /* 小屏幕下恢复垂直布局 */
    .main-content {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    /* 侧边栏菜单样式调整 */
    .sidebar .main-menu {
        gap: 8px;
        padding: 12px;
    }
    
    /* 按钮容器样式调整 */
    .sidebar .button-container {
        flex-direction: row;
        gap: 8px;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    
    .sidebar .button-container .menu-item {
        flex: 1;
        min-width: calc(33.33% - 5px);
        max-width: none;
    }
    
    .sidebar .button-container .menu-button {
        width: 100%;
        font-size: 12px;
        padding: 6px 4px;
        min-height: auto;
        height: auto;
        max-width: none;
    }
    
    .sidebar .menu-item {
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }
    
    /* 优化菜单标签和选择器布局 */
    .sidebar .menu-item:nth-child(2) {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .menu-label {
        font-size: 16px;
        white-space: nowrap;
        font-weight: 500;
    }
    
    /* 图表和表格区域样式调整 */
    #chartContainer {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .chart-section, .table-section {
        padding: 12px;
    }
    
    /* 优化图表标题大小 */
    .chart-item h4 {
        font-size: 1rem;
        margin-bottom: 12px;
        font-weight: 600;
    }
    
    /* 表格样式调整 */
    table {
        font-size: 14px;
    }
    
    th, td {
        padding: 12px 8px;
        font-size: 14px;
    }
    
    /* 优化数据条在移动端的显示 */
    .data-bar-container {
        height: 20px;
    }
    
    /* 优化统计信息布局 */
    .stats-container {
        gap: 8px;
        flex-direction: column;
        align-items: stretch;
    }
    
    .stat-item {
        min-width: auto;
        justify-content: space-between;
        padding: 10px 12px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .stat-value {
        font-size: 15px;
    }
    
    /* 优化孔号深度统计布局 */
    .hole-stats-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .hole-stat-item {
        padding: 12px;
    }
    
    /* 优化表格容器高度 */
    .table-container {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    /* 容器和内边距进一步调整 */
    .container {
        padding: 8px;
    }
    
    header {
        padding: 10px;
    }
    
    /* 侧边栏菜单样式调整 */
    .sidebar .main-menu {
        padding: 8px;
        gap: 6px;
    }

    /* 按钮容器样式调整 */
    .sidebar .button-container {
        flex-direction: row;
        gap: 6px;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .sidebar .button-container .menu-item {
        flex: 1;
        min-width: calc(33.33% - 4px);
    }

    .sidebar .button-container .menu-button {
        font-size: 12px;
        padding: 6px 4px;
        width: 100%;
        min-height: auto;
        height: auto;
        max-width: none;
        font-size: 11px;
    }

    /* 非按钮容器的菜单项样式 */
    .sidebar .menu-item:not(.button-container .menu-item) .menu-button {
        width: 100%;
    }
    
    .menu-select {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    /* 图表和表格区域样式调整 */
    .chart-section, .table-section {
        padding: 12px;
    }
    
    .chart-item {
        padding: 12px;
    }
    
    /* 表格样式调整 */
    table {
        font-size: 11px;
    }
    
    th, td {
        padding: 8px 4px;
    }
    
    /* 移动端表格容器高度调整 */
    .table-container {
        max-height: 350px;
    }
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}



/* Toast通知样式优化 */
#toastContainer {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 统计信息栏样式优化 */
.stats-section {
    background-color: #fff;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.stats-section:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.stats-container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background-color: #7986cb;
    color: white;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
    min-width: 120px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(140, 166, 219, 0.3);
}

.stat-label {
    font-weight: 500;
    font-size: 12px;
    opacity: 0.9;
}

.stat-value {
    font-weight: 600;
    font-size: 14px;
}

/* 孔号深度统计样式优化 */
.stats-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin: 10px 0 8px 0;
    padding-bottom: 6px;
    border-bottom: 1px solid #8ca6db;
    position: relative;
}

.stats-subtitle::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: #b993d6;
}

.hole-stats-container {
    margin-top: 10px;
}

.hole-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
}

.hole-stat-item {
    background-color: #4caf50;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.hole-stat-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.hole-stat-header {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hole-stat-header::before {
    content: '📍';
    font-size: 16px;
}

.hole-stat-detail {
    font-size: 12px;
    opacity: 0.95;
    margin-bottom: 4px;
    line-height: 1.4;
}

.hole-stat-value {
    font-weight: 500;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    padding: 1px 4px;
    border-radius: 3px;
    font-size: 13px;
}

/* 第二行统计信息中的数值使用白色并增大字体 */
.hole-stat-detail + .hole-stat-detail .hole-stat-value {
    color: #fff; /* 白色 */
    background: rgba(255, 255, 255, 0.2); /* 白色背景 */
    font-size: 15px; /* 增大字体 */
    font-weight: 600; /* 加粗 */
}



#chartContainer {
    gap: 12px;
}

.chart-item {
    background-color: #fff;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.chart-item:hover {
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.chart-item h4 {
    color: #2c3e50;
    margin-bottom: 16px;
    font-size: 1.1rem;
    text-align: center;
    font-weight: 600;
}

/* 表格区域样式优化 */
.table-section {
    background-color: #fff;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.table-section:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.table-container {
    overflow-x: auto;
    max-height: 500px;
    overflow-y: auto;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* 优化文件输入的样式和交互 */
#fileInput {
    display: none;
    /* 确保input元素仍然可以接收事件 */
    pointer-events: auto;
}

/* 菜单按钮基础样式 */
.menu-button {
    padding: 8px 8px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    min-height: auto;
    height: auto;
    touch-action: manipulation;
    user-select: none;
    line-height: 1.3;
    width: 80px;
    text-decoration: none;
    border: 1px solid transparent;
    background-color: #5c6bc0;
    color: #fff;
    white-space: normal;
    text-align: center;
}

.menu-button:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.menu-button:active {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* 增强label的可点击区域 */
.menu-button[for="fileInput"] {
    cursor: pointer;
}

/* 特定按钮颜色 */
.btn-import {
    background-color: #c8e6c9; /* 更柔和的浅绿色 */
    color: #2e7d32;
    justify-content: center;
    width: 100%;
}

.btn-clear {
    background-color: #ffcc80; /* 更柔和的浅橙色 */
    color: #ef6c00;
    justify-content: center;
    width: 100%;
}

.btn-export {
    background-color: #bbdefb; /* 浅蓝色 */
    color: #1976d2;
    justify-content: center;
    width: 100%;
}

.btn-export-image {
    background-color: #80deea; /* 浅青色 */
    color: #006064;
}

.btn-export-image:hover {
    background-color: #4dd0e1;
    box-shadow: 0 2px 8px rgba(128, 222, 234, 0.3);
}

.btn-export-pdf {
    background-color: #fff9c4; /* 浅黄色 */
    color: #f57f17;
}

.btn-export-pdf:hover {
    background-color: #fff59d;
    box-shadow: 0 2px 8px rgba(255, 249, 196, 0.3);
}

/* 菜单选择器样式优化 */
.menu-select {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background-color: #fff;
    font-size: 13px;
    min-width: 80px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.menu-select:focus {
    outline: none;
    border-color: #8ca6db;
    box-shadow: 0 0 0 2px rgba(140, 166, 219, 0.1);
}

/* 主导航菜单悬停效果 */
.main-menu:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

/* 表格样式优化 */
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    background-color: #fff;
}

th, td {
    padding: 8px 10px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    /* 移除过渡效果，避免闪烁 */
}

th {
    background-color: #8ca6db;
    color: white;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
    border-bottom: none;
    padding-top: 8px;
    padding-bottom: 8px;
}

tr {
    /* 移除过渡效果，避免闪烁 */
}

tr:hover {
    background-color: rgba(140, 166, 219, 0.05);
    /* 移除transform，避免位置变化导致的闪烁 */
}

tr:hover td {
    color: #8ca6db;
}

/* 数据条样式 */
.data-bar-cell {
    position: relative;
    padding: 8px 0;
}

.data-bar-container {
    position: relative;
    width: 100%;
    height: 24px;
    background-color: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.data-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    /* 移除宽度过渡效果，避免闪烁 */
}

/* 深度数据条渐变 */
.depth-bar {
    background: linear-gradient(90deg, #a5d6a7, #c8e6c9);
}

/* 总深度数据条渐变 */
.total-depth-bar {
    background: linear-gradient(90deg, #ffccbc, #ffe0b2);
}

.data-bar-value {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #555;
    font-weight: 600;
    font-size: 12px;
    z-index: 1;
    pointer-events: none;
}

/* 头部样式优化 */
header {
    text-align: center;
    margin-bottom: 8px;
    padding: 8px 12px;
    background-color: #8ca6db;
    color: white;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

header:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

header h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* 统计信息和图表在移动端的优化 */
@media (max-width: 768px) {
    /* 统计信息样式调整 */
    .stats-section {
        padding: 12px;
    }
    
    .stats-container {
        gap: 8px;
        flex-direction: column;
        align-items: stretch;
    }
    
    .stat-item {
        justify-content: space-between;
        min-width: auto;
        padding: 8px 10px;
    }
    
    .hole-stats-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .hole-stat-item {
        padding: 10px 12px;
    }
    
    .hole-stats-container {
        margin-top: 8px;
    }
    
    /* 图表样式调整 */
    .chart-item {
        padding: 14px;
    }
    
    .chart-item h4 {
        font-size: 1rem;
        margin-bottom: 14px;
    }
}

@media (max-width: 480px) {
    /* 统计信息样式进一步调整 */
    .stats-subtitle {
        font-size: 13px;
        margin: 8px 0 6px 0;
    }
    
    .hole-stat-header {
        font-size: 13px;
    }
    
    .hole-stat-detail {
        font-size: 11px;
    }
    
    /* 图表样式进一步调整 */
    .chart-item {
        padding: 10px;
    }
    
    .chart-item canvas {
        height: 200px !important;
        touch-action: manipulation;
    }
    
    /* 增强移动端触摸体验 */
    .menu-button, .menu-select {
        min-height: 44px;
        touch-action: manipulation;
        font-size: 14px;
    }
    
    /* 优化移动端表格触摸体验 */
    th, td {
        padding: 10px 6px;
        font-size: 13px;
    }
    
    /* 优化移动端数据条显示 */
    .data-bar-cell {
        padding: 6px 0;
    }
    
    .data-bar-value {
        font-size: 11px;
    }
}

/* 滚动条样式优化 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background-color: #8ca6db;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #7c95ce;
}

/* 返回顶部按钮样式 */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 44px;
    height: 44px;
    background-color: #8ca6db;
    color: white;
    border: 2px solid #7c95ce;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    touch-action: manipulation;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: #7c95ce;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top:active {
    transform: translateY(0);
}

/* 移动端返回顶部按钮样式 */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 10px;
        right: 10px;
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}

/* 加载动画 */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    border-top-color: #667eea;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 选择文本样式 */
::selection {
    background: rgba(102, 126, 234, 0.2);
    color: #2c3e50;
}

::-moz-selection {
    background: rgba(102, 126, 234, 0.2);
    color: #2c3e50;
}

/* Toast通知样式 */
.toast {
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    max-width: 350px;
    word-wrap: break-word;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.2s ease-out;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.2s ease-out;
}

@keyframes toastSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes toastFadeOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.toast.success {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.toast.error {
    background-color: #f48fb1;
}

.toast.warning {
    background-color: #f48fb1;
}

.toast.info {
    background-color: #81d4fa;
}

.toast .toast-icon {
    display: inline-block;
    margin-right: 10px;
    font-size: 16px;
    vertical-align: middle;
}

.toast .toast-message {
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 768px) {
    #toastContainer {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .toast {
        max-width: none;
    }
}