body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 0.5rem;
}

.container {
    background-color: white;
    border: 1px solid black;
    padding: 20px;
    width: 100%;
    max-width: 500px;
}

h1 {
    text-align: center;
    margin-bottom: 0;
}

.description {
    margin-bottom: 3rem;
}

.gradient-preview {
    height: 200px;
    border: 1px solid black;
    margin-bottom: 20px;
}

.controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.color-inputs {
    display: flex;
    justify-content: space-between;
}

.color-inputs input[type="color"] {
    width: 48%;
    height: 40px;
    border: 1px solid black;
    background: none;
    border-radius: 0;
}

.angle-input {
    display: flex;
    align-items: center;
    gap: 10px;
}

.angle-input input[type="range"] {
    flex-grow: 1;
}

.output {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

textarea {
    width: 100%;
    height: 80px;
    resize: none;
    padding: 5px;
    border: 1px solid black;
    font-family: monospace;
    box-sizing: border-box;
    border-radius: 0;
}

button {
    padding: 10px;
    background-color: white;
    border: 1px solid black;
    cursor: pointer;
    transition: background-color 0.3s;
}

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