/* HOLO-NET GLOBAL STYLES */

body {
    margin: 0;
    padding: 0;
    background: #03060d;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #d0e7ff;
}

/* Scanline overlay */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255,255,255,0.03) 0px,
        rgba(255,255,255,0.03) 1px,
        transparent 2px,
        transparent 4px
    );
    opacity: 0.25;
    z-index: 2;
}

/* HoloNet Panel */
.holo-panel {
    background: rgba(20, 40, 70, 0.35);
    border: 1px solid rgba(120, 180, 255, 0.35);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 25px rgba(40, 120, 255, 0.15);
}

/* HoloNet Table */
.holo-table {
    width: 100%;
    border-collapse: collapse;
    color: #d0e7ff;
    font-size: 14px;
}

.holo-table th {
    text-align: left;
    padding: 10px;
    background: rgba(60, 100, 160, 0.25);
    border-bottom: 1px solid rgba(120, 180, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.holo-table td {
    padding: 8px;
    border-bottom: 1px solid rgba(120, 180, 255, 0.15);
}

.holo-table tr:hover td {
    background: rgba(120, 180, 255, 0.08);
}

/* Inputs */
.holo-input {
    width: 100%;
    padding: 10px;
    background: rgba(20, 40, 70, 0.35);
    border: 1px solid rgba(120, 180, 255, 0.35);
    border-radius: 8px;
    color: #d0e7ff;
    backdrop-filter: blur(6px);
    margin-bottom: 20px;
}

/* Buttons */
.holo-button {
    padding: 12px 20px;
    background: rgba(60, 120, 200, 0.4);
    border: 1px solid rgba(120, 180, 255, 0.5);
    border-radius: 8px;
    color: #d0e7ff;
    cursor: pointer;
    transition: 0.2s ease;
}

.holo-button:hover {
    background: rgba(120, 180, 255, 0.5);
    box-shadow: 0 0 12px rgba(120, 180, 255, 0.4);
}

/* Footer */
.holo-footer {
    text-align: center;
    margin-top: 50px;
    padding-bottom: 40px;
    color: #6f8aa8;
    font-size: 13px;
    letter-spacing: 1px;
}
