.SiteText {
    color: #9BF00C !important;
}

.PostImage {
    height: 96px;
    width: 96px;
}

.ReactionImage {
    height: 48px;
}

.ReplyImage {
    height:48px;
}

.ReactionLabel {
    font-size: large;
    font-weight: bold;
}

.FlagPost {
    margin-left: 25px;
    cursor: pointer;
}

.PostStats {
    max-width: 64px;
    min-width: 48px;
    padding: 0px;
}

.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* Adjust as needed */
}

.spinner-overlay {
    position: fixed;
    top: 300px;
    left: 300px;
    width: 50%;
    height: 50%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.spinner {
    border: 8px solid rgba(0, 0, 0, 0.1);
    border-top: 8px solid #000;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes clickAnimation {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.5);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(0, 123, 255, 0);
    }
}

.animate-click {
    animation: clickAnimation 0.5s ease-out;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.blinking {
    animation: blink 0.5s step-start infinite;
}