body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f2f5;
    font-family: sans-serif;
}

.button-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

button {
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    color: white;
    transition: background-color 0.3s ease;
}

.feed-button {
    position: relative;
    background-color: orange;
    font-size: 24px; /* For the emoji */
    padding: 8px 12px;
    line-height: 1;
}

.feed-button.clicked {
    background-color: green;
}

.indicator {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #fa383e;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    border: 2px solid white;
}

#post-button {
    background-color: #1877f2;
}

