body {
    font-family: 'Courier New', Courier, Consolas, Menlo, Monaco, 'Lucida Console', 'DejaVu Sans Mono', monospace;
    padding: 1rem;
    background-color: #f5f5f5;
    color: #333;
}

h1, h2 {
    text-align: center;
}

.highlight {
    color: #003366; /* koyu mavi */
    font-style: italic;
    font-weight: bold;
}

form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

input[type="text"] {
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 0.5rem;
    background-color: #444;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.terminal {
    background-color: #111;
    color: #00FF00;
    font-family: 'Courier New', Courier, Consolas, Menlo, Monaco, 'Lucida Console', 'DejaVu Sans Mono', monospace;
    padding: 1rem;
    margin-top: 2rem;
    border-radius: 8px;
    white-space: pre-wrap;
    overflow-x: auto;
}

.table-container {
    margin-top: 2rem;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

th, td {
    border: 1px solid #999;
    padding: 0.5rem;
    text-align: left;
    font-family: 'Courier New', Courier, Consolas, Menlo, Monaco, 'Lucida Console', 'DejaVu Sans Mono', monospace;
}

th {
    background-color: #222;
    color: #ddd;
}

@media (max-width: 600px) {
    body {
        padding: 0.5rem;
    }
}
