/* Custom styles extending Tailwind */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Custom scrollbar for textareas */
textarea::-webkit-scrollbar {
    width: 8px;
}
textarea::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 8px;
}
textarea::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 8px;
}
textarea::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Color picker styling */
input[type="color"]::-webkit-color-swatch-wrapper {
	padding: 0;
}
input[type="color"]::-webkit-color-swatch {
	border: 1px solid #e2e8f0;
	border-radius: 0.25rem;
}
