/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0d0d0d;
    color: #00ffcc;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 900px;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00ffaa;
    text-shadow: 0 0 5px #00ffaa77;
}

.search-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

input[type="text"] {
    padding: 12px 16px;
    width: 60%;
    min-width: 250px;
    background: #1a1a1a;
    border: 2px solid #00ffaa;
    border-radius: 6px;
    color: #00ffcc;
    font-size: 1rem;
    transition: 0.2s ease;
}

input[type="text"]:focus {
    outline: none;
    border-color: #00ffcc;
    box-shadow: 0 0 5px #00ffcc55;
}

button {
    padding: 12px 20px;
    background: #00ffaa;
    color: #0d0d0d;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s ease;
}

button:hover {
    background: #00ddaa;
}

.iframeWindow {
    width: 100%;
    height: 70vh;
    border: 2px solid #00ffaa;
    border-radius: 6px;
    background: #ffffff;
}
