* {
    padding: 0px;
    margin: 0px;
    border: none;
}

html {
    height: 100%;
}

body {
    position: relative;
    height: 100%;
}

body::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./img/dollar.jpg');
    background-size: cover;
    opacity: 0.1;
    z-index: -1;
}

.container {
    margin: 0 15px;
}

nav {
    background: #333;
    padding: 10px;
}

nav a {
    color: white;
    margin-right: 15px;
    text-decoration: none;
}

nav a:hover {
    color: lightblue;
}

.main-img {
    padding: 10px;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;

    img {
        width: 100%;
        height: 100%;
    }
}



/* Вариант 1: Простая таблица */
.headers-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: monospace;
    background: #000 !important;
}

.headers-table table {
    width: 100%;
}

.headers-table th, .headers-table td {
    padding: 2px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.headers-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.header-name {
    font-weight: bold;
    color: #333;
}

.header-value {
    word-break: break-all;
background-color: #f5f5f5;
}

/* Вариант 2: С полосами */
.headers-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.headers-table tr:hover {
    background-color: #f0f0f0;
}

/* Адаптивная таблица для мобильных */
@media (max-width: 768px) {
    .headers-table {
        font-size: 14px;
    }
    
    .headers-table th, .headers-table td {
        padding: 8px;
    }
}
