
.tag-input {
    padding: 5px;
    font-size: 14px;
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid #f0f0f0 !important;
    height: clamp(15px,10cqw + 5px,80px);
    width: clamp(75px,50cqw + 25px,400px);
    background-color: #bddad7;
    border-style: none;
    z-index: 1000;
    position: absolute; 
    bottom: 0px;
    left: clamp(50% + 9px,50% + 8cqw + 2px,50% + 40px);
    display: flex;
    outline: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease-in-out, transform 0.2s ease-out;
}

.tagImg {
    display: inline-block;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(9px,8cqw + 2px,40px);
    font-size: 12px;
    color: white;
    background-color: #80CBC4;
    padding: 1px;
    border-radius: 12px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.4);
}

.tags-container {
    position: absolute;
    top: 100%;
    left: clamp(50% + 9px,50% + 8cqw + 2px,50% + 40px);
    width: clamp(75px,50cqw + 25px,400px);
    min-height: clamp(15px,10cqw + 5px,80px);
    padding: 5px;
    display: flex;
    background-color: #bddad7;
    border-radius: 0 0 8px 8px;
    z-index: 999;
    transition: opacity 0.3s ease-in-out, transform 0.2s ease-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: auto;
}

.bubble-tag {
    display: inline-block;
    margin-top: 5px;
    font-size: 12px;
    color: white;
    background-color: #80CBC4;
    padding: 3px 8px;
    border-radius: 12px;
    margin-right: 5px;
}