#infoPanels {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.panel {
    background: #151821;
    border: 1px solid #222;
    padding: 8px 10px;
    border-radius: 4px;

    font-size: 12px;
    color: #888;

    display: flex;
    flex-direction: column;
    gap: 6px;

    min-width: 180px;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.08s ease;
}

.panel span {
    color: #00ffcc;
}

.panel input {
    background: #0e0f12;
    border: 1px solid #2a2f3a;
    color: #d0d0d0;
    padding: 3px 6px;
    font-family: monospace;
    font-size: 12px;
    width: 90px;
}

.panel input:focus {
    outline: none;
    border-color: #00ffcc;
    box-shadow: 0 0 0 2px rgba(0, 255, 204, 0.15);
}

.panel:hover {
    border-color: #00ffcc;
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.15);
    transform: translateY(-1px);
}