/**
 * WP Author Status - Front-End Style
 *
 * @package WP Author Status v2.0 - 30 January, 2025
 * @link https://www.realwebcare.com/
 */
/* Status Box Container */
#wpaust-status-wrap {
    position: relative;
    width: 100%;
    padding: 25px;
    margin: 20px auto;
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    color: #fff;
    font-family: 'Arial', sans-serif;
}

#wpaust-status-wrap.wpaust-bp-gradient {
    background: linear-gradient(135deg, #2b5876, #4e4376);
}

#wpaust-status-wrap.wpaust-tb-gradient {
    background: linear-gradient(135deg, #006064, #00acc1);
}

#wpaust-status-wrap.wpaust-gy-gradient {
    background: linear-gradient(135deg, #388e3c, #fbc02d);
}

#wpaust-status-wrap.wpaust-dp-gradient {
    background: linear-gradient(135deg, #8e24aa, #d500f9);
}

#wpaust-status-wrap.wpaust-db-gradient {
    background: linear-gradient(135deg, #1a237e, #42a5f5);
}

/* #wpaust-status-wrap::before {
    content: "";
    position: absolute;
    right: 10px;
    top: 10px;
    width: 19px;
    height: 19px;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 50%;
    box-shadow: 0 0 2px 1px rgba(112, 112, 112, 0.5);
} */

/* User Info Section */
#wpaust-status-wrap #wpaust-status-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 15px;
    position: relative;
}

/* User Avatar */
#wpaust-status-wrap #wpaust-status-header .wpaust-user-avatar {
    position: relative;
    margin-top: 15px;
    text-align: center;
}

#wpaust-status-wrap #wpaust-status-header .wpaust-user-avatar img {
    background: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

/* Status Text Bubble */
#wpaust-status-wrap #wpaust-status-header .wpaust-user-avatar::before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent rgba(255, 255, 255, 0.1) transparent;
    transform: translateX(-50%);
}

/* User Name */
#wpaust-status-wrap #wpaust-status-header .wpaust-user-name {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    margin-left: 15px;
    flex-grow: 1;
    color: #fff;
}


#wpaust-status-wrap.wpaust-oy-gradient #wpaust-status-header .wpaust-user-name {
    color: #704501;
}

/* Post Count */
#wpaust-status-wrap #wpaust-status-header .wpaust-total-post-count {
    position: absolute;
    right: 0;
    bottom: -15px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0;
    padding: 0 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    color: #fff;
}


#wpaust-status-wrap.wpaust-oy-gradient #wpaust-status-header .wpaust-total-post-count {
    color: #a56602;
}

/* Status Content */
#wpaust-status-wrap .wpaust-status-info {
    position: relative;
    margin: 10px 0 15px;
    text-align: left;
}

/* Status Text */
#wpaust-status-wrap .wpaust-status-info .wpaust-status-text {
    background: rgba(255, 255, 255, 0.1);
    margin: 0;
    padding: 15px;
    border-radius: 8px;
    position: relative;
    top: 5px;
}

#wpaust-status-wrap .wpaust-status-info .wpaust-status-text p {
    margin: 0 0 1.6em;
    padding: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
}

#wpaust-status-wrap.wpaust-oy-gradient .wpaust-status-info .wpaust-status-text p {
    color: #704501;
}

/* Time Indicator */
#wpaust-status-wrap .wpaust-status-info .wpaust-status-time {
    position: absolute;
    right: 15px;
    bottom: 0;
    display: block;
    margin: 10px 0 0;
    padding: 0;
    font-size: 14px;
    color: #e5e5e5;
    text-shadow: 1px 1px 2px rgba(58,58,58,0.3);
}

#wpaust-status-wrap.wpaust-oy-gradient .wpaust-status-info .wpaust-status-time {
    color: #704501;
}

#wpaust-status-wrap .wpaust-status-info .wpaust-status-time::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 5px;
    background: url(../images/wpaust-time.svg) no-repeat 0 0;
    width: 16px;
    height: 16px;
}

#wpaust-status-wrap.wpaust-oy-gradient .wpaust-status-info .wpaust-status-time::before {
    background: url(../images/wpaust-time-oy.svg) no-repeat 0 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    #wpaust-status-wrap {
        padding: 20px;
        width: 95%;
    }

    #wpaust-status-wrap #wpaust-status-header .wpaust-user-avatar img {
        width: 60px;
        height: 60px;
    }

    #wpaust-status-wrap #wpaust-status-header .wpaust-user-name {
        font-size: 18px;
    }

    #wpaust-status-wrap .wpaust-status-info .wpaust-status-text {
        font-size: 15px;
    }
}
