/**
 * Afriforum Member Content Pill Styles
 */

/* Member content pill */
.afriforum-member-pill {
    display: inline-block;
    width: 100%;
    text-align: center;
    background-color: #006938;
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 5px 10px;
    /* border-radius: 15px; */
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.afriforum-member-pill::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 50%);
    transform: rotate(45deg);
    z-index: 1;
}

.afriforum-member-pill-container {
    margin-bottom: 20px;
}

/* Make sure the pill is properly positioned */
.entry-content .afriforum-member-pill-container:first-child,
.post-content .afriforum-member-pill-container:first-child,
.content-area .afriforum-member-pill-container:first-child {
    margin-top: 0;
}
