﻿body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f0f4; 
    overflow: auto; 
}

#site-header {
    position: fixed; 
    top: 25px;
    left: 35px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 15px;
    pointer-events: none; 
}

#site-logo {
    width: 48px; 
    height: auto;
    border-radius: 8px; 
}

#site-title {
    color: #222222;
    font-size: 26px;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

#cy {
    width: 100%;
    display: block;
}

/* Floating Draggable Overlay */
.floating-overlay { 
    position: fixed; 
    top: 25px;
    right: 35px;
    width: 340px; 
    background-color: rgba(30, 34, 39, 0.85); 
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #abb2bf; 
    display: none; 
    flex-direction: column; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.4); 
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    z-index: 100; 
}

.sb-header { 
    padding: 25px 20px 15px 20px; 
    background-color: rgba(23, 26, 31, 0.6);
    border-bottom: 1px solid rgba(255,255,255,0.05); 
    text-align: center; 
    cursor: grab;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    position: relative;
}
.sb-header:active { cursor: grabbing; }

.close-btn {
    position: absolute;
    top: 12px;
    right: 15px;
    color: #7f848e;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}
.close-btn:hover { color: #e06c75; }

.placeholder-image { 
    width: 70px; 
    height: 70px; 
    background: rgba(44, 49, 58, 0.8); 
    margin: 0 auto 15px auto; 
    border-radius: 8px; 
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.sb-title { font-size: 18px; color: #ffffff; font-weight: bold; margin-bottom: 4px; pointer-events: none;}
.sb-subtitle { font-size: 11px; color: #61afef; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; pointer-events: none;}

.sb-body { padding: 25px; flex-grow: 1; }

.data-row { 
    display: flex; 
    justify-content: space-between; 
    margin-bottom: 14px; 
    font-size: 13px; 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
    padding-bottom: 8px;
}
.data-label { color: #7f848e; }
.data-val { color: #ffffff; font-weight: 600; text-align: right;}

.val-yes { color: #98c379; }
.val-no { color: #e06c75; }
.val-opt { color: #e5c07b; }

.btn { 
    background-color: #0074D9; 
    color: white; 
    border: none; 
    padding: 14px; 
    width: 100%; 
    font-size: 12px; 
    font-weight: 800; 
    letter-spacing: 1px;
    cursor: pointer; 
    border-radius: 4px; 
    margin-top: 20px; 
    transition: background 0.2s;
}
.btn:hover { background-color: #0056a3; }
