@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


html, body {
    overflow-x: hidden;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

.roboto {
  font-family: 'Roboto', sans-serif;
}

input[type='radio'] {
    accent-color: #38aa40;
}

/* start for like */
.reaction-dropdown {
    position: relative;
    display: inline-block;
}

.reaction-options {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    z-index: 1;
    display: flex;
    flex-direction: row; /* Display options horizontally */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}

.reaction-options.active {
    opacity: 1;
    pointer-events: auto;
}

.reaction-option {
    display: flex;
    align-items: center;
    padding: 8px;
    text-align: left;
    border: none;
    background: none;
    cursor: pointer;
}

.reaction-option:hover {
    background-color: #f1f1f1;
}

.reaction-option i {
    margin-right: 8px;
}
/* end for like */
