/* Default light theme */
body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    color: black;
    background-color: white;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    padding: 0 24px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

.navbar .logo {
    width: 50px;
    height: auto;
}

.navbar .nav-links {
    display: flex;
    gap: 20px;
}

.navbar .nav-links a {
    text-decoration: none;
    font-size: 14px;
    color: black;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar .nav-links a:hover {
    color: #333;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 64px);
    text-align: center;
}

h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

input[type="text"] {
    padding: 10px;
    font-size: 1rem;
    background-color: #f0f0f0;
    border: none;
    border-radius: 5px;
    width: 300px;
    margin-right: 10px;
    outline: none;
}

button {
    padding: 10px 15px;
    font-size: 1rem;
    background-color: black;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #333;
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
    body {
        background-color: black;
        color: white;
    }
    .navbar {
        background-color: black;
        border-bottom: 1px solid #555;
    }
    .navbar .logo svg path {
        fill: white;
    }
    .navbar .nav-links a {
        color: white;
    }
    .navbar .nav-links a:hover {
        color: #ddd;
    }
    input[type="text"] {
        background-color: #333;
        color: white;
    }
    button {
        background-color: #444;
    }
    button:hover {
        background-color: #666;
    }
}
