﻿/* Dark theme global styles */

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
}

a {
    text-decoration: none;
    color: #bb86fc;
}

input, select, button {
    margin-bottom: 10px;
    background-color: #1e1e1e;
    color: #e0e0e0;
    border: 1px solid #333;
}

    input:focus, select:focus {
        border-color: #bb86fc;
        outline: none;
    }

.text-center {
    text-align: center;
}

pre {
    background-color: #1e1e1e;
    color: #e0e0e0;
    padding: 10px;
    border-radius: 5px;
}
