/* ===========================
   GLOBAL DARK THEME
   =========================== */

body {
    background: #05060a;
    color: #dfe6f0;
    font-family: "Segoe UI", sans-serif;
    margin: 0;
    padding: 0;
}

/* ===========================
   NEON BOXES
   =========================== */

.neon-box {
    background: #0a0c12;
    border: 1px solid #0ff;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 6px rgba(0,255,255,0.25);
    border-radius: 6px;
}

/* ===========================
   TITLES
   =========================== */

.settings-title {
    font-size: 20px;
    font-weight: bold;
    color: #0ff;
    margin-bottom: 5px;
    text-shadow: 0 0 4px rgba(0,255,255,0.4);
}

/* ===========================
   TABLES
   =========================== */

.neon-table {
    width: 100%;
    border-collapse: collapse;
    color: #dfe6f0;
}

.neon-table th {
    background: #0d1018;
    color: #0ff;
    padding: 10px;
    border-bottom: 1px solid #0ff;
    text-shadow: 0 0 4px rgba(0,255,255,0.4);
}

.neon-table td {
    padding: 10px;
    border-bottom: 1px solid rgba(0,255,255,0.15);
}

.neon-table tr:hover {
    background: rgba(0,255,255,0.05);
}

/* ===========================
   REGION TILES (MINI MAP)
   =========================== */

.region-tile {
    background: #0a0c12;
    border: 1px solid #0ff;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 0 4px rgba(0,255,255,0.25);
    transition: 0.15s;
}

.region-tile:hover {
    background: #0d1118;
    box-shadow: 0 0 8px rgba(0,255,255,0.35);
}

/* ===========================
   USER LINKS
   =========================== */

.user-info-link {
    color: #0ff;
    cursor: pointer;
    transition: 0.15s;
}

.user-info-link:hover {
    text-shadow: 0 0 6px rgba(0,255,255,0.5);
}

/* ===========================
   POPUP WINDOWS
   =========================== */

.neon-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0a0c12;
    border: 1px solid #0ff;
    padding: 20px;
    z-index: 9999;
    min-width: 320px;
    box-shadow: 0 0 10px rgba(0,255,255,0.35);
    border-radius: 6px;
    display: none;
}

.neon-popup h4 {
    margin-top: 0;
    color: #0ff;
    text-shadow: 0 0 4px rgba(0,255,255,0.4);
}

.neon-popup table {
    width: 100%;
    font-size: 13px;
}

.neon-popup td {
    padding: 4px 0;
}

.close-btn {
    float: right;
    cursor: pointer;
    color: #f55;
    font-weight: bold;
    transition: 0.15s;
}

.close-btn:hover {
    color: #faa;
}

/* ===========================
   SCROLLBAR (NEON)
   =========================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #05060a;
}

::-webkit-scrollbar-thumb {
    background: #0ff;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #66ffff;
}


.status-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    color: #000;
}
.status-online {
    background-color: #0ff;
    color: #000;
}
.status-offline {
    background-color: #555;
    color: #ccc;
}
.user-list span {
    display: inline-block;
    background: rgba(0,255,255,0.08);
    padding: 2px 6px;
    margin: 2px;
    border-radius: 4px;
    font-size: 12px;
}
.region-row:hover {
    background: rgba(0,255,255,0.05);
}
.region-name {
    font-weight: bold;
    color: #0ff;
}



/* GLOBAL DARK BACKGROUND */
body {
    background: #0a0a0a;
    color: #ffa64d;
    font-family: 'Orbitron', sans-serif;
}

/* NEON ORANGE TEXT */
h1, h2, h3, h4, h5, h6, p, span {
    color: #ffa64d;
    text-shadow: 0 0 6px #ff7b00, 0 0 12px #ff7b00;
}

/* PANELS */
.panel {
    background: rgba(20, 20, 20, 0.85);
    border: 1px solid #ff7b00;
    box-shadow: 0 0 12px #ff7b00;
}

.panel-heading {
    background: #1a1a1a !important;
    border-bottom: 1px solid #ff7b00 !important;
    color: #ffa64d !important;
    text-shadow: 0 0 8px #ff7b00;
}

/* CAROUSEL */
.carousel-inner img {
    border-radius: 6px;
    box-shadow: 0 0 15px #ff7b00;
}

.carousel-control span {
    color: #ffa64d;
    text-shadow: 0 0 10px #ff7b00;
}

/* VIDEO FRAMES */
.circle-video {
    border-radius: 8px;
    border: 1px solid #ff7b00;
    box-shadow: 0 0 12px #ff7b00;
}

/* THUMBNAILS */
.thumb {
    margin-bottom: 20px;
}

.thumb iframe,
.thumb video {
    border-radius: 8px;
    border: 1px solid #ff7b00;
    box-shadow: 0 0 12px #ff7b00;
}

/* WARNING BOX */
.img-thumbnail {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid #ff7b00;
    box-shadow: 0 0 12px #ff7b00;
}

/* LINKS */
a, a:hover {
    color: #ffa64d;
    text-shadow: 0 0 8px #ff7b00;
}

/* BLINK EFFECT */
.blink {
    animation: neonBlink 1.2s infinite alternate;
}

@keyframes neonBlink {
    from { text-shadow: 0 0 5px #ff7b00; opacity: 0.7; }
    to   { text-shadow: 0 0 15px #ff7b00; opacity: 1; }
}

body {
    padding-top: 60px;
}


.grid-map {
    width: 100%;
    height: 800px;
    background: #0a0a0a;
    border: 2px solid #ff7b00;
    box-shadow: 0 0 15px #ff7b00;
    position: relative;
}

.region-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    position: absolute;
    cursor: pointer;
    border: 2px solid #ff7b00;
    box-shadow: 0 0 10px #ff7b00;
    transition: 0.2s;
}

.region-dot.online {
    background: #00ff99;
    box-shadow: 0 0 12px #00ff99;
}

.region-dot.offline {
    background: #ff3300;
    box-shadow: 0 0 12px #ff3300;
}

.region-label {
    position: absolute;
    color: #ffa64d;
    font-size: 12px;
    text-shadow: 0 0 6px #ff7b00;
    transform: translate(-50%, -20px);
}
