/* CompactCSS source: /apps/byteViewer/styles.css */
body {
    background: #000;
    color: #0f0;
    font-family: 'Courier New', monospace;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    text-align: center;
    color: #f0f;
    text-shadow: 0 0 10px #f0f;
}

.drop-zone {
    display: block;
    margin: 20px auto;
    padding: 20px;
    background: #111;
    color: #0f0;
    border: 2px dashed #0f0;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 300px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
}

.drop-zone.dragover {
    background: #0f0;
    color: #000;
    border-color: #f0f;
    transform: scale(1.05);
    box-shadow: 0 0 30px #0f0, 0 0 60px #f0f;
    text-shadow: 0წ

.hex-row {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.byte-offset {
    color: #f0f;
    min-width: 100px;
    font-weight: bold;
}

.hex-values {
    color: #0f0;
    flex-grow: 1;
}

.ascii-values {
    color: #00f;
    min-width: 160px;
}

#hexViewer {
    background: #111;
    padding: 15px;
    border: 2px solid #0f0;
    min-height: 300px;
    overflow: hidden;
    white-space: pre;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.controls {
    text-align: center;
    margin-top: 20px;
}

button {
    background: #111;
    color: #0f0;
    border: 1px solid #0f0;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    transition: all 0.3s;
}

button:hover {
    background: #0f0;
    color: #000;
    box-shadow: 0 0 15px #0f0;
}