html {
    height: 100%;
}

html, body {
    min-height: 100%;
}

body {
    font-family: 'Press Start 2P', cursive;
    font-size: 10px; /* Adjusted font size */
    padding-top: 75px;
    padding-bottom: 56px;
    position: relative;
}

#addressContainer {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

input {
    padding: 10px;
    margin: 5px 0;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 10px 15px;
    background-color: #5cb85c;
    border: none;
    color: white;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background-color: #4cae4c;
}

#addressList p {
    font-size: 14px;
}

#logo {
    max-width: 30px;
    max-height: 30px;
    margin-top: -5px;
    margin-right: 5px;
}

#supply {
    cursor: pointer;
}

#qrCode canvas {
    max-width: 100%;
}

.router-page {
    display: none;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

[class*="entypo"]:before {
    font-family: 'EntypoRegular', sans-serif;
    font-size: 16px;
}

@media (max-width: 991.98px) {
    .navbar-expand-lg>.container, .navbar-expand-lg>.container-fluid {
        padding-right: 15px;
        padding-left: 15px;
    }
}

code {
    background: #3f3f3f;
    color: #ffffff;
    padding: 3px;
    border-radius: 5px;
}

.modal-dialog {
    max-width: 530px;
}

.text-monospace {
    font-size: 14px;
}

small .text-monospace {
    font-size: 12px;
}

.card.peers-card {
    max-width: 600px;
    margin: 0 auto 20px auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 10px;
}

.card.peers-card .card-header {
    background-color: #f5f5f5;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    text-align: center;
}

#peers-table {
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    background-color: #fff;
}

#peers-table thead th {
    font-size: 10px;
    text-transform: uppercase;
    background-color: #eee;
    padding: 10px;
}

#peers-table tbody td {
    padding: 8px;
    vertical-align: middle;
}

#peers-table tr:hover {
    background-color: #f9f9f9;
}

/* Tabs Container */
.tabs-container {
    margin-top: 2em;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Tab Buttons Bar */
.tabs {
    display: flex;
    border-bottom: 1px solid #bbb;
    background-color: #e0e0e0;
}

/* Individual Tab Button */
.tab-button {
    flex: 1;
    padding: 12px;
    cursor: pointer;
    background-color: #e0e0e0;
    border: none;
    font-weight: 600;
    font-size: 1em;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.tab-button:hover {
    background-color: #ccc;
    color: #000;
}

/* Active Tab Button */
.tab-button.active {
    background-color: #222;
    color: #fff;
    border-bottom: 3px solid #007acc;
}

/* Content Pane for Each Tab */
.tab-content {
    display: none;
    padding: 1em;
    background-color: #ffffff;
    font-family: monospace, monospace;
    font-size: 0.95em;
    line-height: 1.5;
    color: #333;
}

/* Active Content Pane */
.tab-content.active {
    display: block;
}

/* Output Display Area */
.addnode-output {
    background-color: #fefefe;
    border: 1px dashed #ccc;
    padding: 1em;
    white-space: pre-wrap;
    max-height: 300px;
    overflow-y: auto;
    border-radius: 6px;
    font-size: 15px;
    color: #444;
}

#node-map {
    width: 100%;
    height: 800px;
    border-radius: 12px;
    border: 1px solid #ccc;
    margin-top: 2em;
}

