@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&display=swap');

body {
    font-family: 'Funnel Display', sans-serif;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(130, 212, 184, 0.6);
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(26, 95, 77, 0.8);
}

/* Hide scrollbar completely for specific elements */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* Content Editable styling for tags */
[contenteditable="plaintext-only"],
[contenteditable="true"] {
    outline: none;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
}

[contenteditable="plaintext-only"]:focus,
[contenteditable="true"]:focus {
    border-color: rgba(130, 212, 184, 0.8);
    background: rgba(255, 255, 255, 0.5);
    border-radius: 1px;
}