/* 全局通用样式 */
body {
    font-family: 'Microsoft YaHei', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: #fff;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

header {
    margin-bottom: 40px;
    padding: 20px;
}

/* 倒计时显示 */
.countdown-display {
    margin-top: 20px;
    font-size: 1.5rem;
    color: #d4af37;
}

/* 计时器按钮容器 */
.timer-toggle-wrapper {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

/* 二级选择器的上间距 */
.selector-section--secondary {
    margin-top: 40px;
}

/* 罪人筛选网格 */
.sinner-filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

/* 设置操作区域 */
.settings-actions {
    margin-top: 30px;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, #d4af37, #f8f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.subtitle {
    font-size: 1.2rem;
    color: #aaa;
}

.selector-container {
    background: rgba(10, 10, 10, 0.7);
    border: 2px solid #d4af37;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.selector-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.scroll-container {
    overflow: hidden;
    position: relative;
    margin: 20px 0;
    border: 2px solid #d4af37;
    border-radius: 10px;
    background: rgba(20, 20, 30, 0.8);
}

.scroll-list {
    position: absolute;
    top: 0;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    cursor: default; /* 禁用点击指针，仅允许通过按钮随机抽取 */
    user-select: none; /* 禁止文字选择 */
    pointer-events: none; /* 禁用所有鼠标事件 */
}

.scroll-item-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar-placeholder {
    border-radius: 6px;
    background: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    width: 40px;
    height: 40px;
    min-width: 40px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

img.avatar-placeholder {
    background: transparent;
    aspect-ratio: 1 / 1;
}

/* 选中项高亮效果 */
.scroll-item.selected {
    background: rgba(212, 175, 55, 0.5);
    color: #ffffff;
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.8);
    transform: scale(1.05);
    z-index: 5;
}

.selector-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.control-btn {
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 30px;
    border: none;
    background: linear-gradient(145deg, #272018, #1e1a13);
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #d4d4d4;
    font-weight: bold;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5), inset -2px -2px 5px rgba(70, 70, 70, 0.1), 2px 2px 5px rgba(0, 0, 0, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(100, 100, 100, 0.2);
    border-left: 1px solid rgba(100, 100, 100, 0.2);
    min-height: 44px;
    line-height: 1;
    vertical-align: middle;
}

.control-btn:hover {
    background: linear-gradient(145deg, #3a3125, #272018);
    transform: translateY(-2px);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5), inset -2px -2px 5px rgba(70, 70, 70, 0.1), 3px 3px 10px rgba(0, 0, 0, 0.4);
}

.control-btn:disabled {
    background: #555;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.6;
}

.result-section {
    background: rgba(10, 10, 10, 0.7);
    border: 2px solid #d4af37;
    border-radius: 15px;
    padding: 25px;
    margin: 30px auto;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.result-title {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.result-content {
    font-size: 1.2rem;
    line-height: 1.8;
}

.highlight {
    color: #d4af37;
    font-weight: bold;
}

.instructions {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    text-align: left;
}

.instructions h3 {
    color: #d4af37;
    margin-bottom: 15px;
    text-align: center;
}

.instructions ul {
    padding-left: 20px;
}

.instructions li {
    margin-bottom: 10px;
    line-height: 1.5;
}

/* 新增筛选样式 */
#pagination-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin: 15px 0;
    overflow-x: auto;
    padding: 10px;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #d4af37 rgba(255, 255, 255, 0.1);
}

#pagination-container::-webkit-scrollbar {
    height: 8px;
}

#pagination-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

#pagination-container::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 4px;
}

#pagination-container::-webkit-scrollbar-thumb:hover {
    background: #f0d466;
}

.sinner-checkbox-label {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.sinner-checkbox-label:hover {
    background: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.sinner-checkbox-label input {
    margin-right: 8px;
}

.filter-avatar {
    border-radius: 50%;
    margin-right: 8px;
    object-fit: cover;
}

.filter-avatar-placeholder {
    border-radius: 50%;
    background: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-right: 8px;
}

/* 新增设置页面样式 */
.settings-page {
    display: none;
    background: rgba(10, 10, 10, 0.7);
    border: 2px solid #d4af37;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.settings-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.settings-section {
    margin-bottom: 30px;
}

.settings-section-title {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 20px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
}

.personality-settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.personality-setting-card {
    background: rgba(30, 30, 40, 0.8);
    border: 1px solid #d4af37;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s;
}

.personality-setting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.personality-avatar {
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    background: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.personality-name {
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 10px;
}

.personality-toggle {
    display: flex;
    align-items: center;
}

.personality-toggle input {
    margin-right: 8px;
}

.navigation-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.nav-btn {
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 25px;
    border: none;
    background: linear-gradient(145deg, #272018, #1e1a13);
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #d4d4d4;
    font-weight: bold;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5), inset -2px -2px 5px rgba(70, 70, 70, 0.1), 2px 2px 5px rgba(0, 0, 0, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(100, 100, 100, 0.2);
    border-left: 1px solid rgba(100, 100, 100, 0.2);
    min-height: 44px;
    line-height: 1;
}

.nav-btn:hover {
    background: linear-gradient(145deg, #3a3125, #272018);
    transform: translateY(-2px);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5), inset -2px -2px 5px rgba(70, 70, 70, 0.1), 3px 3px 10px rgba(0, 0, 0, 0.4);
}

.nav-btn.active {
    background: linear-gradient(145deg, #d4af37, #b8860b);
    color: #000;
}

/* 人格设置容器 */
#personality-settings-container {
    width: 100%;
    text-align: center;
}

/* 分页样式 */
#personality-pagination,
.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    gap: 8px;
    padding: 10px 0;
    width: 100%;
    box-sizing: border-box;
}

.pagination::-webkit-scrollbar {
    height: 6px;
}

.pagination::-webkit-scrollbar-track {
    background: #1a1a2e;
    border-radius: 3px;
}

.pagination::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 3px;
}

.page-btn {
    padding: 8px 15px;
    border-radius: 5px;
    border: none;
    background: linear-gradient(145deg, #272018, #1e1a13);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #d4d4d4;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    min-width: 40px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5), inset -2px -2px 5px rgba(70, 70, 70, 0.1), 2px 2px 5px rgba(0, 0, 0, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(100, 100, 100, 0.2);
    border-left: 1px solid rgba(100, 100, 100, 0.2);
}

.page-btn.active {
    background: linear-gradient(145deg, #d4af37, #b8860b);
    color: #000;
}

.page-btn:disabled {
    background: #555;
    cursor: not-allowed;
    opacity: 0.6;
}

.personality-page {
    display: none;
}

.personality-page.active {
    display: block;
}

/* 响应式设计 */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 0;
        max-width: 100%;
    }
    
    h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .description {
        font-size: 0.9rem;
    }
    
    #countdown {
        font-size: 1.2rem;
    }
    
    .selector-title {
        font-size: 1.3rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .selector-container {
        padding: 20px;
    }
    
    .scroll-container {
        margin: 15px 0;
    }
    
    .scroll-item {        font-size: 0.9rem;        padding: 8px 10px;        max-width: 100%;        box-sizing: border-box;        min-height: 50px;    }    
    .scroll-item-content {        flex-direction: row;        gap: 8px;        max-width: 100%;        overflow: hidden;    }    
    .scroll-item-content img.avatar-placeholder,    .scroll-item-content div.avatar-placeholder {        max-width: 25px;        max-height: 25px;        width: 25px;        height: 25px;        font-size: 12px;        aspect-ratio: 1 / 1;        border-radius: 4px;    }    
    .scroll-item-content span {        white-space: nowrap;        overflow: hidden;        text-overflow: ellipsis;        max-width: calc(100% - 35px);    }
    
    .filter-controls {
        gap: 5px;
    }
    
    .control-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    /* 响应式分页样式修复 */
    .settings-section {
        padding: 15px;
    }
    
    #personality-pagination,
    .pagination {
        padding: 5px;
        margin: 15px auto;
        justify-content: center !important;
    }
    
    .page-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
        min-width: 35px;
    }
    
    .sinner-checkbox-label {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .personality-settings-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }
    
    .personality-setting-card {
        padding: 10px;
    }
    
    .personality-avatar {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .personality-name {
        font-size: 0.8rem;
    }
    
    .settings-page {
        padding: 20px;
    }
    
    .settings-title {
        font-size: 1.5rem;
    }
    
    .settings-section-title {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 5px;
    }
    
    #sinner-filter {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 8px;
    }
    
    .navigation-buttons {
        gap: 10px;
        margin-top: 15px;
    }
    
    .nav-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .instructions {
        padding: 15px;
    }
    
    .instructions ul {
        padding-left: 15px;
    }
}

/* 边狱巴士特色排行榜样式 */
.ranking-list {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(30, 10, 20, 0.9) 100%);
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3), inset 0 0 20px rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
}

.ranking-item {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin: 10px 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ranking-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #ffd700, #ff8c00);
    border-radius: 5px 0 0 5px;
}

.ranking-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    border-color: #ff8c00;
}

.ranking-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
    margin-right: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    min-width: 50px;
    text-align: center;
}

.character-info {
    display: flex;
    align-items: center;
    margin-right: 20px;
    min-width: 150px;
}

.character-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #ffd700;
    object-fit: cover;
    margin-right: 15px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
}

.character-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.character-details {
    display: flex;
    flex-direction: column;
}

.character-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.personality-name {
    font-size: 0.9rem;
    color: #ff8c00;
    opacity: 0.9;
}

.ranking-info {
    flex: 1;
    margin-right: 20px;
}

.ranking-date {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 5px;
}

.ranking-comment {
    font-size: 1rem;
    color: #fff;
    font-style: italic;
}

.ranking-time {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    min-width: 100px;
    text-align: right;
}

.no-records {
    text-align: center;
    padding: 50px;
    color: #ffd700;
    font-size: 1.2rem;
    font-style: italic;
}

.actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff8c00, #ff6347);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.7);
}

.btn-danger {
    background: linear-gradient(135deg, #dc143c, #b22222);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.5);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #b22222, #8b0000);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.7);
}

/* ========================================
   上传模态窗口样式
======================================== */

.upload-modal-content {
    max-width: 750px;
    max-height: 90vh;
    overflow-y: auto;
}

.upload-modal-body {
    padding: 25px;
}

/* 上传类型选择器 */
.upload-type-selector {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.upload-type-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.upload-type-option {
    cursor: pointer;
}

.upload-type-option input[type="radio"] {
    display: none;
}

.upload-type-card {
    background: rgba(20, 20, 30, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.upload-type-card i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 10px;
}

.upload-type-card h5 {
    color: #d4af37;
    font-size: 1.1rem;
    margin: 10px 0 8px 0;
}

.upload-type-card p {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.upload-type-option input[type="radio"]:checked + .upload-type-card {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
}

/* 上传表单 */
.upload-global-form {
    margin-top: 20px;
}

.upload-fields {
    display: block;
}

.upload-section {
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.section-title {
    color: #d4af37;
    font-size: 1.1rem;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title i {
    font-size: 1rem;
}

.upload-section .form-group {
    margin-bottom: 15px;
}

.upload-section .form-group:last-child {
    margin-bottom: 0;
}

.upload-section label {
    display: block;
    color: #d4d4d4;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.upload-section input[type="text"],
.upload-section input[type="url"],
.upload-section textarea {
    width: 100%;
    padding: 10px;
    background: rgba(30, 30, 40, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    color: #fff;
    font-size: 0.95rem;
    box-sizing: border-box;
}

.upload-section input[type="text"]:focus,
.upload-section input[type="url"]:focus,
.upload-section textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.upload-section input[type="text"]:read-only {
    background: rgba(40, 40, 50, 0.8);
    cursor: not-allowed;
    color: #d4af37;
    font-weight: bold;
}

.upload-section textarea {
    resize: vertical;
    font-family: 'Microsoft YaHei', sans-serif;
}

/* 层数选项 */
.floor-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.floor-option {
    flex: 1;
    min-width: 100px;
    cursor: pointer;
}

.floor-option input[type="radio"] {
    display: none;
}

.floor-option span {
    display: block;
    padding: 10px 15px;
    background: rgba(30, 30, 40, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    text-align: center;
    color: #d4d4d4;
    transition: all 0.3s ease;
    cursor: pointer;
}

.floor-option input[type="radio"]:checked + span {
    background: rgba(212, 175, 55, 0.3);
    border-color: #d4af37;
    color: #d4af37;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.floor-option:hover span {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

/* 上传操作按钮 */
.upload-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

/* 响应式设计 */
@media (max-width: 600px) {
    .upload-type-options {
        grid-template-columns: 1fr;
    }
    
    .floor-options {
        flex-direction: column;
    }
    
    .upload-actions {
        flex-direction: column;
    }
    
    .upload-actions .control-btn {
        width: 100%;
    }
}