body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.share-feed-container {
    width: 89%;
    height: 40px;
    background-color: #f0f2f5;
    color: #65676b;
    padding: 8px;
    border-radius: 12px;
    margin-left: 12px;
    text-decoration: none;
}

.share-feed-container:hover {
    background-color: #ccced1;
    color: #65676b;
}

.container-modal {
    width: 500px;
    height: auto;
    background-color: #ffffff;
    padding: 12px;
    margin: auto;
    border-radius: 12px;
}

.container-modal h5 {
    text-align: center;
    font-weight: 600 !important;
}

.post-modal,
.share-modal {
    display: none;
    position: fixed;
    z-index: 500;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-top: -18px;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.feed-share-types {
    display: flex;
    align-items: center;
    margin-left: auto;
    position: relative;
    z-index: 3;
    justify-content: end;
}

.feed-share-types .feed-share-type {
    display: block;
    position: relative;
    background: none;
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 10px;
    /* Replace with your actual border-radius value */
    text-align: center;
    line-height: 1;
    padding: 0.5rem;
    transition: all 0.3s ease;
    /* Add your animation/transition properties */

    /* Hover styles */

}

.feed-share-types .feed-share-type-disable {
    display: block;
    position: relative;
    background: none;
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 10px;
    /* Replace with your actual border-radius value */
    text-align: center;
    line-height: 1;
    padding: 0.5rem;
    opacity: 0.8;
    filter: grayscale(1);
    cursor: not-allowed;
}

.feed-share-type-disable img {
    width: 1.25rem;
    height: 1.25rem;
    filter: grayscale(1);
    object-fit: cover;
}

.feed-share-types .feed-share-type:hover {
    background: rgb(201, 232, 243);
    /* Replace with your actual hover background color */
}

/* Hover styles for img */
.feed-share-types .feed-share-type:hover img {
    opacity: 1;
    filter: none;
}

/* Active styles */
.feed-share-types .feed-share-type:active {
    background: blue;
    /* Replace with your actual active background color */
}

/* Active styles for img */
.feed-share-types .feed-share-type:active img {
    opacity: 1;
    filter: brightness(0) invert(1);
}

/* Img styles */
.feed-share-types .feed-share-type img {
    width: 1.25rem;
    height: 1.25rem;
    filter: grayscale(1);
    object-fit: cover;
}

.feed-share-actions button {
    width: 100%;
    margin-top: 12px;
}

#description {
    width: 100% !important;
    font-weight: 400;
}

.gif-container {
    height: 200px;
    overflow: auto;
}

.gifImage {
    width: 23%;
}

.remove-btn-gif {
    position: absolute;
    background-color: #e9e9e9;
    border: 1px solid #a59c9c;
    border-radius: 50%;
    font-size: 20px;
    width: 30px;
    height: 30px;
    padding: 0px;
    top: 5px;
    right: 0;
    line-height: 0px;
}

.selected-gif-container {
    position: relative;
}

.selected-gif-container img {
    width: 100%;
    height: auto;
}

.gif-container::-webkit-scrollbar {
    width: 20px;
}

.gif-container::-webkit-scrollbar-track {
    background-color: transparent;
}

.gif-container::-webkit-scrollbar-thumb {
    background-color: #d6dee1;
    border-radius: 20px;
    border: 6px solid transparent;
    background-clip: content-box;
}

.gif-container::-webkit-scrollbar-thumb:hover {
    background-color: #a8bbbf;
}

.emojiPicker {
    top: 460px !important;
}

.loader {
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #5bcefa;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    margin: auto;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
