body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-width: 600px;
    margin: 2rem auto;
    padding: 1rem;
    background: #f5f5f5;
}

h1 {
    color: #333;
}

.section {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

input, button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    margin: 0.25rem;
}

input {
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background: #0056b3;
}

button.delete {
    background: #dc3545;
}

button.delete:hover {
    background: #c82333;
}

#cookie-display {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
    font-family: monospace;
    word-break: break-all;
    min-height: 2rem;
}

.visit-count {
    font-size: 1.5rem;
    color: #28a745;
}
