/* ========== БАЗОВЫЕ СТИЛИ ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0c0f;
    background-image: radial-gradient(circle at 20% 30%, rgba(40, 45, 50, 0.3) 2%, transparent 2.5%),
                      radial-gradient(circle at 70% 85%, rgba(60, 65, 70, 0.2) 1.5%, transparent 2%);
    background-size: 45px 45px, 38px 38px;
    font-family: 'Segoe UI', 'Roboto', 'Inter', system-ui, sans-serif;
    color: #eef2ff;
    line-height: 1.5;
    padding: 20px;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    background: rgba(8, 10, 14, 0.92);
    backdrop-filter: blur(4px);
    border-radius: 24px;
    border: 1px solid #2a2f3c;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

/* ========== ХЕДЕР ========== */
.header {
    background: linear-gradient(135deg, #101318 0%, #181c24 100%);
    padding: 24px 32px;
    border-bottom: 2px solid #e67e22;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo h1 {
    font-size: 2rem;
    letter-spacing: 2px;
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 5px rgba(230, 126, 34, 0.2);
}

.logo p {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-top: 6px;
}

.contacts {
    display: flex;
    gap: 24px;
    align-items: center;
}

.contacts a {
    color: #f39c12;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contacts a:hover {
    color: #ffffff;
    text-shadow: 0 0 6px #f39c12;
}

.icon-tg {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f39c12'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.64 6.8c-.15 1.58-.8 5.42-1.13 7.19-.14.75-.42 1-.68 1.03-.58.05-1.02-.38-1.58-.75-.88-.6-1.38-.97-2.23-1.56-.99-.68-.35-1.06.22-1.67.15-.15 2.8-2.57 2.85-2.79.01-.03.02-.14-.06-.2-.08-.06-.2-.04-.28-.02-.12.03-2.03 1.29-2.73 1.74-.25.16-.48.24-.69.24-.22 0-.46-.08-.67-.15-.36-.12-.66-.2-.64-.44.01-.13.08-.25.21-.37.54-.47 1.32-1.02 2.35-1.66 1.16-.72 2.17-1.14 3.03-1.26.33-.05.65.04.85.26.18.2.24.48.2.8z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.icon-plus {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000000'%3E%3Cpath d='M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.add-server-btn {
    background: #e67e22;
    border: none;
    color: #000;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.2s;
    font-family: inherit;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.add-server-btn:hover {
    background: #f39c12;
    transform: scale(1.02);
    box-shadow: 0 0 12px rgba(230,126,34,0.5);
}

/* МЕНЮ */
.nav-menu {
    background: #0f1219;
    padding: 0 32px;
    border-bottom: 1px solid #262b34;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 36px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    display: inline-block;
    padding: 14px 0;
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
    border-bottom: 2px solid transparent;
}

.nav-menu li a:hover {
    color: #f39c12;
    border-bottom-color: #f39c12;
}

/* ========== СЛАЙДЕР ========== */
.slider-container {
    margin: 24px 32px;
    position: relative;
    border-radius: 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    background: #0f1219;
    border: 1px solid #2a2f3c;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.slider-slide {
    flex: 0 0 100%;
    position: relative;
    min-height: 360px;
    background-size: cover;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(95deg, rgba(8, 10, 14, 0.9) 0%, rgba(8, 10, 14, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
}

.slide-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.slide-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 20px 0;
    font-size: 1rem;
    color: #e2e8f0;
}

.slide-stat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.slide-players {
    color: #f39c12;
    font-weight: bold;
}

.connect-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e67e22;
    color: #000;
    font-weight: bold;
    padding: 12px 32px;
    border-radius: 60px;
    text-decoration: none;
    margin-top: 20px;
    transition: 0.2s;
    width: fit-content;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
}

.connect-btn:hover {
    background: #f39c12;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(230,126,34,0.4);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 50%;
    z-index: 10;
    transition: 0.2s;
    backdrop-filter: blur(4px);
}

.slider-btn:hover {
    background: #e67e22;
    color: #000;
}

.prev { left: 20px; }
.next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: #5e6b7c;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.dot.active {
    background: #f39c12;
    width: 28px;
}

/* ========== СТАТИСТИКА И ТАБЛИЦА ========== */
.stats-bar, .control-bar {
    background: #0f1219;
    padding: 14px 32px;
    border-bottom: 1px solid #262b34;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.stat {
    background: #080b10;
    padding: 6px 18px;
    border-radius: 60px;
    border: 1px solid #2a2f3c;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.stat span {
    color: #f39c12;
    font-weight: bold;
}

.refresh-btn {
    background: #1e242c;
    border: 1px solid #3d434b;
    color: #e0e0e0;
    padding: 6px 20px;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.refresh-btn:hover {
    background: #e67e22;
    color: #000;
    border-color: #e67e22;
}

.table-wrapper {
    overflow-x: auto;
    padding: 0 0 20px 0;
}

.server-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.85rem;
}

.server-table th {
    padding: 14px 12px;
    background: #0b0e14;
    border-bottom: 1px solid #2a2f3c;
    color: #f39c12;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.server-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #1e232c;
    vertical-align: middle;
}

/* Иконки в таблице */
.icon-status {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}
.icon-status.online {
    background-color: #2ecc71;
    box-shadow: 0 0 6px #2ecc71;
}
.icon-players, .icon-map, .icon-wipe, .icon-votes, .icon-copy {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-right: 6px;
}
.icon-players { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f39c12'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E"); }
.icon-map { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f39c12'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E"); }
.icon-wipe { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f39c12'%3E%3Cpath d='M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zM7 12h5v5H7v-5z'/%3E%3C/svg%3E"); }
.icon-votes { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f39c12'%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E"); }
.icon-copy { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z'/%3E%3C/svg%3E"); }

.icon-servers {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f39c12'%3E%3Cpath d='M4 6h16v2H4V6zm2-4h12v2H6V2zm16 4v14H2V6h20zm-2 2H4v10h16V8z'/%3E%3C/svg%3E");
    background-size: contain;
    vertical-align: middle;
    margin-right: 6px;
}
.icon-refresh {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z'/%3E%3C/svg%3E");
    background-size: contain;
    vertical-align: middle;
    margin-right: 6px;
}

.player-count {
    font-weight: bold;
    color: #f39c12;
}

/* Колонка с тегами */
.tags-cell {
    max-width: 200px;
}
.tag {
    display: inline-block;
    background: #1e293b;
    color: #facc15;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 30px;
    margin: 2px 4px 2px 0;
    white-space: nowrap;
    font-weight: 500;
    transition: 0.1s;
}
.tag::before {
    content: '#';
    opacity: 0.7;
}
.tag:hover {
    background: #f39c12;
    color: #000;
}

/* Узкие колонки */
.col-status { width: 80px; }
.col-players { width: 100px; }
.col-votes { width: 80px; }
.col-ip { width: 160px; }

/* ПУЛЬСАЦИЯ ДЛЯ СЕРВЕРОВ С ОНЛАЙНОМ > 100 */
@keyframes softGlow {
    0% { background-color: rgba(46, 204, 113, 0); box-shadow: inset 0 0 0px rgba(46,204,113,0); }
    50% { background-color: rgba(46, 204, 113, 0.1); box-shadow: inset 0 0 0px rgba(46,204,113,0.2); }
    100% { background-color: rgba(46, 204, 113, 0); box-shadow: inset 0 0 0px rgba(46,204,113,0); }
}
tr.high-population {
    animation: softGlow 2.5s ease-in-out infinite;
}

/* ========== СЕКЦИЯ ГОЛОСОВАНИЯ ========== */
.vote-section {
    margin: 32px;
    padding: 24px;
    background: #0f1219;
    border-radius: 28px;
    border: 1px solid #2a2f3c;
}

.swipe-card {
    background: #181e28;
    border-radius: 28px;
    padding: 32px;
    text-align: center;
    border: 1px solid #e67e22;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.swipe-card.voted {
    transform: scale(0.97);
    opacity: 0.7;
}

.vote-btn, .skip-btn {
    cursor: pointer;
    transition: 0.2s;
    border: none;
    padding: 12px 28px;
    border-radius: 60px;
    font-weight: bold;
    margin: 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.vote-btn { background: #2ecc71; color: #000; }
.vote-btn:hover { background: #27ae60; transform: scale(1.02); }
.skip-btn { background: #5a6874; color: #fff; }
.skip-btn:hover { background: #7f8c8d; transform: scale(1.02); }

.icon-thumb, .icon-skip {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
}
.icon-thumb { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000000'%3E%3Cpath d='M1 21h4V9H1v12zm22-11c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.59 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2z'/%3E%3C/svg%3E"); }
.icon-skip { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M6 18l8.5-6L6 6v12zM16 6v12h2V6h-2z'/%3E%3C/svg%3E"); }

/* ========== МОДАЛЬНОЕ ОКНО ========== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background: #1a1f2a;
    border-radius: 32px;
    border: 1px solid #f39c12;
    max-width: 520px;
    width: 90%;
    padding: 32px;
    position: relative;
}

.modal-content h3 {
    color: #f39c12;
    margin-bottom: 24px;
    font-size: 1.6rem;
}

.modal-content input, .modal-content textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 20px;
    background: #0f1219;
    border: 1px solid #2a2f3c;
    color: #eef2ff;
    border-radius: 16px;
    font-family: inherit;
    transition: 0.2s;
}

.modal-content input:focus {
    outline: none;
    border-color: #f39c12;
}

.modal-content button {
    background: #e67e22;
    border: none;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: bold;
    margin-right: 12px;
    cursor: pointer;
    transition: 0.2s;
}

.modal-content button.close-modal {
    background: #3a4455;
    color: #fff;
}

.modal-content button.close-modal:hover {
    background: #5a6874;
}

.icon-close {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
    background-size: contain;
    vertical-align: middle;
    margin-left: 8px;
}

/* ========== ФУТЕР ========== */
.footer {
    background: #080b10;
    padding: 20px 32px;
    text-align: center;
    font-size: 0.75rem;
    color: #6c7a8a;
    border-top: 1px solid #1f242e;
}

/* ========== ЗАГРУЗЧИК ========== */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(6px);
}
.loader {
    border: 4px solid #2a2f3c;
    border-top: 4px solid #f39c12;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    animation: spin 1s linear infinite;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* ========== АДАПТИВНОСТЬ ========== */
@media (max-width: 768px) {
    body { padding: 12px; }
    .header { flex-direction: column; align-items: stretch; }
    .contacts { justify-content: space-between; }
    .slide-title { font-size: 1.5rem; }
    .slide-stats { flex-direction: column; gap: 8px; }
    .slide-overlay { padding: 24px; }
    .slider-slide { min-height: 280px; }
    .stats-bar, .control-bar { flex-direction: column; align-items: stretch; }
    .server-table th, .server-table td { padding: 8px 6px; }
    .tag { font-size: 0.6rem; padding: 1px 6px; }
    .tags-cell { max-width: 140px; }
    .vote-section { margin: 20px; }
    .swipe-card { padding: 20px; }
}
/* Дополнительные стили для таблицы */
.server-table th, .server-table td {
    padding: 10px 8px;
    word-break: break-word;
}

.col-status { width: 70px; }
.col-players { width: 100px; }
.col-votes { width: 70px; }
.col-ip { width: 150px; }
.col-map { width: 120px; }
.col-wipe { width: 100px; }
.tags-cell { max-width: 180px; }

.server-name {
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.server-name:hover {
    white-space: normal;
    word-break: break-all;
    background: #141820;
    position: relative;
    z-index: 1;
}

/* Иконка голосов уже определена в .icon-votes, но убедимся, что она не содержит текста */
.icon-votes {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f39c12'%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E");
    display: inline-block;
    width: 16px;
    height: 16px;
    background-size: contain;
    vertical-align: middle;
    margin-right: 4px;
}

/* Для мобильных устройств */
@media (max-width: 768px) {
    .server-table th, .server-table td {
        padding: 6px 4px;
        font-size: 0.7rem;
    }
    .col-ip { width: 120px; }
    .server-name { max-width: 150px; }
    .tag { font-size: 0.55rem; padding: 1px 4px; }
}
/* Уменьшаем масштаб таблицы */
.server-table th,
.server-table td {
    padding: 6px 8px;   /* было 10px 12px – уменьшаем */
    font-size: 0.75rem; /* было 0.85rem – меньше шрифт */
}

/* Дополнительно можно сузить колонки */
.col-status { width: 60px; }
.col-players { width: 80px; }
.col-votes { width: 60px; }
.col-ip { width: 130px; }
.col-map { width: 100px; }
.col-wipe { width: 90px; }
.tags-cell { max-width: 150px; }

/* И теги сделать чуть мельче */
.tag {
    font-size: 0.6rem;
    padding: 1px 6px;
}
/* Запрещаем перенос строк в таблице */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.server-table {
    min-width: 1100px; /* ширина, при которой все колонки видны без сжатия */
    border-collapse: collapse;
}

.server-table th,
.server-table td {
    white-space: nowrap;      /* текст в одну строку */
    padding: 8px 12px;        /* компактные отступы */
    vertical-align: middle;
}

/* Обрезаем слишком длинные названия, но в одну строку */
.server-name {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.server-name:hover {
    white-space: normal;
    word-break: break-all;
    background: #141820;
    position: relative;
    z-index: 2;
}

/* Теги в одной строке */
.tags-cell {
    white-space: nowrap;
}
.tag {
    display: inline-block;
    white-space: nowrap;
}

/* Фиксированная ширина колонок (по желанию) */
.col-status { width: 70px; }
.col-players { width: 90px; }
.col-votes { width: 70px; }
.col-ip { width: 150px; }
.col-map { width: 110px; }
.col-wipe { width: 100px; }
.tags-cell { min-width: 160px; }
/* Максимальное сжатие таблицы и запрет переносов */
.server-table th, .server-table td {
    white-space: nowrap !important;
    padding: 4px 6px;
    font-size: 0.7rem;
}
.tags-cell {
    white-space: nowrap !important;
}
.tag {
    display: inline-block;
    white-space: nowrap !important;
    font-size: 0.6rem;
    padding: 1px 5px;
}