html {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    background-color: #f5f5f5;
    color: #333;
}

body {
    margin: 0;
    padding: 2rem 1rem;
}

.flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.flex-col {
    flex-direction: column;
}

.max-w-screen-sm {
    max-width: 640px;
    width: 100%;
}

.mx-auto {
    margin: auto;
}

.gap-4 {
    gap: 1rem;
}

.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.info-box {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-bottom: 1.5rem;
}

.package-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #f8fafc;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

code {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 0.5rem;
    border-radius: 4px;
    font-family: 'Menlo', 'Monaco', 'Courier New', monospace;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow-x: auto;
}

.link {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s;
}

.link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    color: #666;
}

.footer p {
    margin: 0;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.9rem;
}

h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

textarea {
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    resize: vertical;
    background-color: white;
}

textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

button {
    background-color: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #1d4ed8;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

input[type="checkbox"] {
    width: 1.2rem;
    height: 1.2rem;
}

.description {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.25rem;
}

.example {
    background-color: white;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    font-size: 0.875rem;
    color: #666;
}

#result {
    background-color: white;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    min-height: 3rem;
}