/**
 * Hillsdale Online Support Diagnostics
 * Stylesheet for the browser diagnostics tool
 */

/* Base Layout */
body {
    background-color: #f8f9fa;
    padding-top: 40px;
}

/* Card Styling */
.card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Status Log Box - Shows diagnostic progress */
.log-box {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.75rem;
    height: 60px;
    overflow-y: auto;
    background: #eaeaea;
    border-radius: 4px;
    padding: 8px;
    list-style: none;
    margin: 0;
    color: #555;
}

.log-box li {
    margin-bottom: 1px;
}

/* Hidden Ad Bait Element - Used for AdBlocker detection */
.hidden-bait {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
}

/* Raw Data Box - Terminal-style JSON display */
.raw-data-box {
    background-color: #212529;
    color: #00ff00;
    font-family: monospace;
    font-size: 0.8rem;
    max-height: 200px;
    overflow-y: auto;
    padding: 15px;
    border-radius: 5px;
    display: none; /* Hidden by default, toggled via JS */
}

/* Advanced Data Toggle Button - Styled to look like card header */
#advanced-data-toggle {
    background-color: #fff;
    padding: 0.75rem 1rem;
    transition: background-color 0.15s ease-in-out;
}

#advanced-data-toggle:hover {
    background-color: #f8f9fa;
}

#advanced-data-toggle:focus {
    outline: 2px solid #0d6efd;
    outline-offset: -2px;
}
