/*
+--------------------------------------------------+
|         This was created by Tyler Chaky          |
|                                                  |
|  __          __   _____   __      __   __   __   |
|  \ \        / /  /  _  \  \ \    / /  /_ | /_ |  |
|   \ \  /\  / /  /  /_\  \  \ \  / /    | |  | |  |
|    \ \/  \/ /  /  _____  \  \ \/ /     | |  | |  |
|     \__/\__/  /__/     \__\  \__/      |_|  |_|  |
|                                                  |
+--------------------------------------------------+
*/

.bsod-theme {
    border-top: 4px solid #0078d7; /* Windows BSOD Blue */
}

.search-row {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

#bsod-input {
    flex: 1;
    font-family: 'Consolas', monospace;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.result-panel {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.1);
    animation: fadeIn 0.3s ease;
}

.result-panel.hidden { display: none; }

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.result-header h2 {
    margin: 0;
    color: #0078d7;
    font-family: 'Consolas', monospace;
    word-break: break-all;
}

.badge {
    background: #333;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
}

.result-body h3 {
    font-size: 1rem;
    color: var(--accent-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.result-body ul {
    list-style-position: inside;
    color: #ccc;
    line-height: 1.6;
}

.result-body li {
    margin-bottom: 5px;
}

.external-links {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.ext-btn {
    flex: 1;
    text-align: center;
    padding: 10px;
    background: #222;
    color: white;
    text-decoration: none;
    border: 1px solid #444;
    border-radius: 4px;
    transition: 0.2s;
}

.ext-btn:hover {
    background: var(--accent-color);
    color: black;
    border-color: var(--accent-color);
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: 0; } }

@media (max-width: 600px) {
    .search-row { flex-direction: column; }
    .result-header { flex-direction: column; gap: 10px; }
}