﻿@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.dropdown-container {
    display: inline-block;
    position: relative;
    font-family: Arial, sans-serif;
}
.dropdown {
    position: relative;
    cursor: pointer;
    border: 1px solid #ccc;
    padding: 8px;
    background: #fff;
    min-width: 120px;
    text-align: left;
}
.dropdown-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
}
.dropdown-list li {
    padding: 8px;
    cursor: pointer;
}
.dropdown-list li:hover {
    background: #f0f0f0;
}
.dropdown.active .dropdown-list {
    display: block;
}

gn-tag-input {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 8px;
    width:100%;
}

gn-tag-input input {
    padding: 4px 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    min-width: 60px;
    width:70px;
    max-width: 80px;
    flex: 1;
}

gn-reply-list textarea {
    background-color:#FFF;
}

gn-liketoggle {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    cursor:pointer;
}