* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background-color: #0f172a;
    color: #f8fafc;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.minimal-container {
    width: 100%;
    max-width: 480px;
    padding: 20px;
}

.input-wrapper {
    display: flex;
    gap: 8px;
    background: #1e293b;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #334155;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #f8fafc;
    font-size: 0.95rem;
    padding: 8px 12px;
}

.input-wrapper button {
    background: #38bdf8;
    color: #0f172a;
    border: none;
    outline: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.input-wrapper button:hover {
    background: #7dd3fc;
}
