/* orbitron-regular - latin */
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Orbitron';
font-style: normal;
font-weight: 400;
src: url('/static/fonts/orbitron-v34-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* orbitron-700 - latin */
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Orbitron';
font-style: normal;
font-weight: 700;
src: url('/static/fonts/orbitron-v34-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* orbitron-900 - latin */
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Orbitron';
font-style: normal;
font-weight: 900;
src: url('/static/fonts/orbitron-v34-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* share-tech-mono-regular - latin */
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Share Tech Mono';
font-style: normal;
font-weight: 400;
src: url('/static/fonts/share-tech-mono-v15-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Share Tech Mono', monospace;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    background-attachment: fixed;
    color: #00ffff;
    /* min-height: 100vh; */
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
    /* z-index: -1; */
}

/* Minimalist Cyberpunk Header */
.cyberpunk-header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #00ffff;
    padding: 20px 0;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.cyberpunk-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    animation: scan-line 3s linear infinite;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.glitch-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5em;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    letter-spacing: 3px;
    position: relative;
    margin: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.glitch-title::before,
.glitch-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-title::before {
    animation: glitch-1 2s infinite linear alternate-reverse;
    color: #ff0080;
    z-index: -1;
}

.glitch-title::after {
    animation: glitch-2 3s infinite linear alternate-reverse;
    color: #00ff00;
    z-index: -2;
}

/* Header Status Display */
.header-status {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-label {
    color: #ff0080;
    font-family: 'Share Tech Mono', monospace;
    font-size: 1em;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.status-value {
    color: #00ffff;
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.status-active {
    color: #00ff00;
    animation: blink 2s infinite;
}

.header-stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

.progress-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-bar {
    width: 120px;
    height: 6px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00ffff;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ffff, #ff0080);
    width: 0%;
    animation: progress-glow 2s ease-in-out infinite;
    border-radius: 2px;
}

.progress-text {
    color: #e0e0e0;
    font-family: 'Share Tech Mono', monospace;
    font-size: 14px;
    font-weight: bold;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
}

.status-text {
    color: #00ff00;
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

@keyframes scan-line {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes glitch-1 {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

@keyframes glitch-2 {
    0% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(2px, 2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(-2px, 2px); }
    100% { transform: translate(0); }
}

@keyframes progress-glow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Responsive design for header */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .glitch-title {
        font-size: 2em;
    }
    
    .header-status {
        align-items: center;
        flex-direction: row;
        gap: 20px;
    }
    
    .header-stats {
        flex-direction: column;
        gap: 15px;
    }
}

/* Main Layout */
.main-layout {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 20px;
    padding: 20px;
    min-height: calc(100vh - 200px);
}

/* Sidebar */
.sidebar {
    width: 300px;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid #00ffff;
    border-radius: 15px;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
    padding: 20px;
    position: sticky;
    top: 20px;
    height: fit-content;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

.sidebar-content h3 {
    color: #ff0080;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4em;
    border-bottom: 2px solid #ff0080;
    padding-bottom: 8px;
}

.entries-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ff0080;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.entries-header span {
    color: #ff0080;
    font-size: 1.4em;
}

.all-link {
    color: #00ffff;
    text-decoration: none;
    font-size: 0.8em;
    font-weight: normal;
    transition: color 0.3s ease;
}

.all-link:hover {
    color: #ff0080;
}

.sidebar-content h4 {
    color: #ff6b9d;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.recent-articles {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.recent-articles li {
    margin-bottom: 8px;
    padding: 8px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.recent-articles li:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateX(5px);
}

.recent-articles a {
    color: #00ffff;
    text-decoration: none;
    font-size: 0.9em;
    display: block;
}

.recent-articles a:hover {
    color: #ff0080;
}

.sidebar-section {
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 0, 128, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 128, 0.2);
}

.sidebar-section p {
    margin: 5px 0;
    font-size: 0.9em;
    color: #e0e0e0;
}

/* Main Content */
.main-content {
    flex: 1;
    min-width: 0;
}

.content-container {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid #00ffff;
    border-radius: 15px;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
    padding: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-layout {
        flex-direction: column;
        padding: 10px;
    }
    
    .sidebar {
        width: 100%;
        position: static;
        max-height: none;
    }
    
    /* Mobile buttons side by side */
    .mobile-buttons {
        display: flex;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .mobile-buttons .btn {
        flex: 1;
        text-align: center;
        padding: 10px 8px;
        font-size: 0.9em;
        margin-left:0;
    }
    
    /* Hide the entries list on mobile to save space */
    .sidebar-content h3:contains("Entries"),
    .sidebar-content h3 + .recent-articles {
        display: none;
    }
    
    /* Alternative approach: hide specific elements */
    .sidebar-content h3:first-of-type,
    .sidebar-content .recent-articles {
        display: none;
    }
    
    .content-container {
        padding: 20px;
    }
}

/* Desktop: stack buttons vertically */
@media (min-width: 769px) {
    .mobile-buttons {
        display: block;
    }
    
    .mobile-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        margin-left: 0;
    }
    
    /* Hide All button on desktop */
    .mobile-buttons .all-btn {
        display: none;
    }
}

/* Legacy container class for backward compatibility */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid #00ffff;
    border-radius: 15px;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
    margin-top: 20px;
    margin-bottom: 20px;
}



.footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    border-top: 2px solid #ff0080;
    color: #ff0080;
    font-size: 14px;
    background: rgba(255, 0, 128, 0.1);
    border-radius: 10px;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    color: #00ffff;
    border-bottom: 3px solid #ff0080;
    padding-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    font-size: 2.2em;
    letter-spacing: 2px;
}

h2 {
    font-family: 'Orbitron', sans-serif;
    color: #ff0080;
    margin-top: 30px;
    text-shadow: 0 0 8px rgba(255, 0, 128, 0.5);
    font-size: 1.8em;
}

h3 {
    font-family: 'Orbitron', sans-serif;
    color: #ff6b9d;
    text-shadow: 0 0 6px rgba(255, 107, 157, 0.5);
    font-size: 1.4em;
}

p {
    margin-bottom: 20px;
    color: #e0e0e0;
    text-shadow: 0 0 5px rgba(224, 224, 224, 0.3);
}

code {
    background: rgba(0, 0, 0, 0.8);
    color: #00ff00;
    padding: 4px 8px;
    border-radius: 5px;
    font-family: 'Share Tech Mono', monospace;
    
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

pre {
    background: rgba(0, 0, 0, 0.9);
    color: #00ff00;
    padding: 20px;
    border-radius: 10px;
    overflow-x: auto;
    border: 1px solid #00ff00;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

blockquote {
    border-left: 4px solid #ff0080;
    margin: 0;
    padding-left: 20px;
    color: #ff6b9d;
    font-style: italic;
    background: rgba(255, 0, 128, 0.1);
    padding: 15px;
    border-radius: 0 10px 10px 0;
}

a {
    color: #00ffff;
    text-decoration: none;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

a:hover {
    color: #ff0080;
    text-shadow: 0 0 10px rgba(255, 0, 128, 0.8);
    transform: translateY(-2px);
}

.missing-article {
    color: #ff6b00 !important;
    font-style: italic;
    text-shadow: 0 0 8px rgba(255, 107, 0, 0.6) !important;
}

.missing-article:hover {
    color: #ff8c00 !important;
    text-shadow: 0 0 12px rgba(255, 140, 0, 0.8) !important;
}

/* .article-list {
    list-style: none;
    padding: 0;
} */

.count {
    color: #ff6b9d;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.2em;
    text-shadow: 0 0 8px rgba(255, 107, 157, 0.5);
    font-family: 'Orbitron', sans-serif;
}

/* .article {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
} */

.queue-status {
    text-align: center;
    margin: 30px 0;
    padding: 30px;
    background: rgba(255, 0, 128, 0.1);
    border: 2px solid #ff0080;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
}

.progress-info {
    margin: 20px 0;
    text-align: left;
}

.progress-info p {
    margin: 10px 0;
    font-size: 1.1em;
}

.time-estimate {
    color: #00ffff;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    transition: opacity 0.2s ease;
}

.status-text {
    color: #ff6b9d;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 107, 157, 0.8);
}

.queue-position {
    color: #ff0080;
    font-weight: bold;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid #00ffff;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ffff, #ff0080);
    width: 0%;
    animation: progress-animation 3s ease-in-out infinite;
    border-radius: 10px;
}

@keyframes progress-animation {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 0%; }
}

.queue-actions {
    margin: 30px 0;
}

.btn {
    display: inline-block;
    padding: 10px 10px;
    margin: 0 10px;
    border: 2px solid;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.btn-primary {
    background: rgba(0, 255, 255, 0.1);
    border-color: #00ffff;
    color: #00ffff;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.btn-primary:hover {
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 0, 128, 0.1);
    border-color: #ff0080;
    color: #ff0080;
    text-shadow: 0 0 5px rgba(255, 0, 128, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 0, 128, 0.2);
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.6);
    transform: translateY(-2px);
}

.queue-info {
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border-left: 4px solid #00ffff;
}

.random-article-section {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
}

.random-btn {
    font-size: 1.2em;
    padding: 15px 15px;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 128, 0.1));
    border: 2px solid;
    border-image: linear-gradient(45deg, #00ffff, #ff0080) 1;
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

.random-btn:hover {
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 128, 0.2));
    transform: scale(1.05);
    animation: none;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 15px rgba(0, 255, 255, 0.4), 0 0 30px rgba(255, 0, 128, 0.2);
    }
    100% {
        box-shadow: 0 0 25px rgba(0, 255, 255, 0.6), 0 0 50px rgba(255, 0, 128, 0.4);
    }
}



/* Project Stats Section */
.project-stats {
    margin-top: 40px;
    padding: 25px;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.project-stats h3 {
    color: #00ffff;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.6em;
    border-bottom: 2px solid #00ffff;
    padding-bottom: 10px;
}

.project-stats p {
    margin: 10px 0;
    font-size: 1.1em;
    color: #e0e0e0;
}

.project-stats p:last-child {
    color: #ff0080;
    font-weight: bold;
    font-style: italic;
}

/* All Articles Page */
.all-articles-list {
    margin: 30px 0;
}

.article-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 8px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.article-item:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateX(5px);
}

.article-link {
    color: #00ffff;
    text-decoration: none;
    font-weight: bold;
    flex: 1;
}

.article-link:hover {
    color: #ff0080;
}

.article-date {
    color: #ff6b9d;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9em;
    margin-left: 20px;
}

.article-count {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 0, 128, 0.05);
    border: 1px solid rgba(255, 0, 128, 0.2);
    border-radius: 10px;
}

.article-count p {
    color: #ff6b9d;
    font-weight: bold;
    margin: 0;
}

/* Pagination Controls */
.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
}

.pagination-btn {
    min-width: 100px;
    text-align: center;
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-btn.disabled:hover {
    background: rgba(255, 0, 128, 0.1);
    box-shadow: none;
    transform: none;
}

.page-info {
    color: #e0e0e0;
    font-family: 'Share Tech Mono', monospace;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 16px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 5px;
}

/* Search Styles */
.search-form {
    display: flex;
    gap: 8px;
    margin: 15px 0;
    align-items: center;
}

.search-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #00ffff;
    border-radius: 4px;
    padding: 8px 12px;
    color: #00ffff;
    font-family: 'Share Tech Mono', monospace;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #ff0080;
    box-shadow: 0 0 10px rgba(255, 0, 128, 0.3);
}

.search-input::placeholder {
    color: rgba(0, 255, 255, 0.6);
}

.search-page {
    padding: 20px 0;
}

.search-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

.search-header h2 {
    margin-bottom: 20px;
    color: #00ffff;
    font-family: 'Orbitron', sans-serif;
}

.search-results {
    margin-top: 20px;
}

.results-count {
    color: #ff0080;
    font-family: 'Share Tech Mono', monospace;
    font-size: 14px;
    margin-bottom: 20px;
    padding: 10px;
    background: rgba(255, 0, 128, 0.1);
    border: 1px solid rgba(255, 0, 128, 0.3);
    border-radius: 4px;
}

.search-result {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.search-result:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateX(5px);
}

.result-title {
    color: #00ffff;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.result-title:hover {
    color: #ff0080;
    text-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
}

.result-highlights {
    margin: 15px 0;
}

.highlight {
    background: rgba(255, 0, 128, 0.1);
    border-left: 3px solid #ff0080;
    padding: 10px 15px;
    margin: 8px 0;
    border-radius: 0 4px 4px 0;
    color: #e0e0e0;
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    line-height: 1.4;
}

.result-meta {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.result-score {
    color: #00ff00;
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    font-weight: bold;
}

.no-results {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 0, 128, 0.3);
    border-radius: 8px;
}

.no-results h3 {
    color: #ff0080;
    margin-bottom: 20px;
}

.no-results p {
    color: #e0e0e0;
    margin-bottom: 15px;
}

.no-results ul {
    text-align: left;
    display: inline-block;
    color: #00ffff;
}

.no-results li {
    margin: 8px 0;
    font-family: 'Share Tech Mono', monospace;
}