body {
    font-family: Arial, sans-serif;
    background-color: #12181f; /* тёмно-синий-серый */
    color: #d3d7de;
    margin: 0;
    padding: 0;
}
.btn {
  all: unset; /* сбрасывает ВСЕ стили браузера — чисто */
  cursor: pointer; /* оставить курсор как у кнопки */
  display: inline; /* если хочешь в строку */
}

#clientConfigText{
    font-size: 10px;
}

.selected-row {
    outline: 2px solid limegreen;
    background-color: #202b36 !important;
}

tr.selected {
    background-color: #2a3b4e !important;
}

header {
    background-color: #1c2530; /* чуть светлее для шапки */
    color: #ffffff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background: #181e27; /* основа под контент */
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.3);
}
.table-wrapper {
    width: 100%;
    overflow-x: auto;
}

table {
    margin: 0 auto; /* центрируем таблицу */
    min-width: 100%; /* не уже родителя */
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 12px 15px;
    border: 1px solid #2a2f38;
    text-align: left;
    font-size: 10px;
    word-break: break-word;
    white-space: normal;
}

th {
    background-color: #1f2a38;
    color: #e8ecf0;
}

tr:nth-child(even) {
    background-color: #1a2029;
}

tr:nth-child(odd) {
    background-color: #161c24;
}

tr:hover {
    background-color: #28303c;
}

.dashboard h2 {
    text-align: center;
    margin-top: 0;
    color: #e0e4e8;
}


.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
}

.modal-content {
    background-color: #1c2530;
    color: #d3d7de;
    margin: auto;
    padding: 30px;
    border: 1px solid #333;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
    position: relative;
}

.close {
    color: #ccc;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: white;
}

pre {
    background-color: #12181f;
    padding: 10px;
    border-radius: 5px;
    overflow-x: auto;
    font-size: 14px;
    line-height: 1.5;
}

#downloadLink {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #2a8f6a;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

#downloadLink:hover {
    background-color: #1e6b4e;
}