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

/* MAIN FEED */

.gf-feed{
    max-width:700px;
    margin:20px auto;
    padding:0 15px;
}

/* POST FORM */

.gf-post-form{
    background:#fff;
    padding:20px;
    border-radius:16px;
    box-shadow:0 4px 15px rgba(0,0,0,0.06);
    margin-bottom:20px;
    text-align:center;
}

.gf-post-form h2{
    margin-top:0;
}

.gf-post-form p{
    color:#555;
    margin-bottom:20px;
}

.gf-post-form input[type="text"],
.gf-post-form textarea,
.gf-post-form input[type="file"]{
    width:100%;
    box-sizing:border-box;
    padding:14px;
    border:1px solid #ddd;
    border-radius:12px;
    margin-bottom:15px;
    font-size:15px;
}

.gf-post-form textarea{
    height:130px;
    resize:none;
}

/* RECORDING SECTION */

.gf-voice-recorder{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    margin-top:20px;
}

.gf-voice-recorder-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    justify-content:center;
}

/* BUTTONS */

#gf_start_record,
#gf_stop_record,
#gf_submit_post{
    border:none;
    border-radius:50px;
    padding:14px 24px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:0.3s ease;
    box-shadow:0 4px 12px rgba(0,0,0,0.12);
}

/* START RECORD */

#gf_start_record{
    background:linear-gradient(
        135deg,
        #1877f2,
        #42a5ff
    );

    color:#fff;
}

/* STOP RECORD */

#gf_stop_record{
    background:linear-gradient(
        135deg,
        #ff4d4d,
        #ff7676
    );

    color:#fff;
}

/* POST BUTTON */

#gf_submit_post{
    background:linear-gradient(
        135deg,
        #42b72a,
        #5ddf43
    );

    color:#fff;

    width:100%;
    max-width:280px;

    display:block;

    margin:25px auto 0 auto;
}

/* HOVER EFFECT */

#gf_start_record:hover,
#gf_stop_record:hover,
#gf_submit_post:hover{
    transform:translateY(-2px);
}

/* AUDIO PREVIEW */

#gf_voice_preview{
    width:100%;
    margin-top:20px;
    border-radius:12px;
}

/* POSTS */

.gf-post-card{
    background:#fff;
    padding:20px;
    border-radius:16px;
    margin-bottom:20px;
    box-shadow:0 4px 15px rgba(0,0,0,0.05);
}

.gf-post-card h3{
    margin-top:0;
}

.gf-post-image{
    width:100%;
    border-radius:12px;
    margin-top:15px;
}

.gf-post-card audio{
    width:100%;
    margin-top:15px;
}

/* REACTIONS */

.gf-reactions{
    margin-top:15px;
    padding-top:15px;
    border-top:1px solid #eee;
}

.gf-react{
    border:none;
    background:#f0f2f5;
    padding:8px 14px;
    border-radius:20px;
    margin-right:10px;
    cursor:pointer;
}

/* COMMENTS */

.gf-comments-section{
    margin-top:20px;
}

.gf-comment{
    background:#f7f7f7;
    padding:12px;
    border-radius:10px;
    margin-bottom:10px;
}

.gf-comment-form input{
    width:100%;
    box-sizing:border-box;
    padding:12px;
    margin-bottom:10px;
    border:1px solid #ddd;
    border-radius:10px;
}

.gf_comment_btn{
    border:none;
    background:#1877f2;
    color:#fff;
    padding:10px 18px;
    border-radius:10px;
    cursor:pointer;
}

/* REPLIES */

.gf-reply-form{
    margin-top:10px;
    margin-bottom:10px;
}

.gf-replies{
    margin-left:25px;
    margin-top:15px;
}

.gf-single-reply{
    background:#ececec;
    padding:10px;
    border-radius:10px;
    margin-bottom:10px;
}

.gf-show-reply-form{
    border:none;
    background:none;
    color:#1877f2;
    cursor:pointer;
    margin-top:5px;
}

/* DELETE BUTTONS */

.gf-delete-post,
.gf-delete-comment{
    background:#ff4d4d;
    color:#fff;
    border:none;
    padding:8px 14px;
    border-radius:8px;
    cursor:pointer;
    margin-top:10px;
}

/* LOAD MORE */

.gf-load-more{
    text-align:center;
    padding:20px;
    color:#666;
}

/* MOBILE */

@media(max-width:600px){

    .gf-feed{
        padding:0 10px;
    }

    #gf_start_record,
    #gf_stop_record,
    #gf_submit_post{
        width:100%;
    }

    .gf-voice-recorder-buttons{
        flex-direction:column;
        width:100%;
    }
}
.gf-notification-wrapper{
    position:relative;
    margin-bottom:20px;
    text-align:right;
}

#gf-notification-btn{
    background:#fff;
    border:none;
    padding:12px 18px;
    border-radius:50px;
    cursor:pointer;
    font-weight:700;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

#gf-notification-count{
    background:#ff4d4d;
    color:#fff;
    border-radius:50%;
    padding:4px 8px;
    font-size:12px;
    margin-left:8px;
}

#gf-notification-dropdown{
    position:absolute;
    right:0;
    top:60px;
    width:300px;
    background:#fff;
    border-radius:14px;
    box-shadow:0 6px 20px rgba(0,0,0,0.12);
    display:none;
    overflow:hidden;
    z-index:999;
}

.gf-notification-item{
    padding:15px;
    border-bottom:1px solid #eee;
    font-size:14px;
}
.gf-chat-wrapper{
    background:#fff;
    border-radius:16px;
    padding:20px;
    margin-top:30px;
    box-shadow:0 4px 15px rgba(0,0,0,0.06);
}

#gf-chat-messages{
    height:350px;
    overflow-y:auto;
    background:#f7f7f7;
    border-radius:12px;
    padding:15px;
    margin-bottom:15px;
}

.gf-chat-message{
    background:#fff;
    padding:10px 14px;
    border-radius:10px;
    margin-bottom:10px;
    box-shadow:0 2px 8px rgba(0,0,0,0.04);
}

.gf-chat-form{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.gf-chat-form input{
    padding:12px;
    border:1px solid #ddd;
    border-radius:10px;
}

#gf_send_chat{
    border:none;
    background:#1877f2;
    color:#fff;
    padding:14px;
    border-radius:12px;
    font-weight:700;
    cursor:pointer;
}
.gf-online-users{
    background:#fff;
    border-radius:16px;
    padding:20px;
    margin-top:25px;
    box-shadow:0 4px 15px rgba(0,0,0,0.06);
}

.gf-online-user{
    padding:10px 0;
    border-bottom:1px solid #eee;
}

#gf-typing-indicator{
    margin-top:15px;
    color:#666;
    font-style:italic;
}
.gf-profile-box{
    background:#fff;
    padding:20px;
    border-radius:16px;
    margin-bottom:25px;
    box-shadow:0 4px 15px rgba(0,0,0,0.06);
}

.gf-profile-box input,
.gf-profile-box textarea{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:10px;
    margin-bottom:15px;
    box-sizing:border-box;
}

#gf_save_profile{
    border:none;
    background:#1877f2;
    color:#fff;
    padding:14px 20px;
    border-radius:12px;
    cursor:pointer;
    font-weight:700;
}

.gf-profile-avatar{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    margin-top:20px;
}

.gf-profile-badge{
    display:inline-block;
    background:#42b72a;
    color:#fff;
    padding:6px 12px;
    border-radius:30px;
    margin-top:10px;
    font-size:13px;
}
.gf-online-counter{
    background:#fff;
    padding:15px 20px;
    border-radius:14px;
    margin-top:20px;
    margin-bottom:20px;
    font-weight:700;
    text-align:center;
    box-shadow:0 4px 15px rgba(0,0,0,0.06);
    font-size:18px;
}

.gf-prayer-rooms{
    max-width:1100px;
    margin:0 auto;
    padding:20px;
}

.gf-prayer-room-grid{
    display:grid;
    grid-template-columns:
        repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:30px;
}

.gf-prayer-room-card{
    background:#fff;
    padding:25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 4px 18px rgba(0,0,0,0.06);
}

.gf-prayer-room-card h3{
    margin-bottom:15px;
}

.gf-prayer-room-online{
    color:#42b72a;
    font-weight:700;
    margin-bottom:20px;
}

.gf-join-room{
    border:none;
    background:#1877f2;
    color:#fff;
    padding:14px 24px;
    border-radius:40px;
    cursor:pointer;
    font-weight:700;
    font-size:15px;
}

.gf-prayer-rooms{
    max-width:1100px;
    margin:0 auto;
    padding:20px;
}

.gf-prayer-room-grid{
    display:grid;
    grid-template-columns:
        repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:30px;
}

.gf-prayer-room-card{
    background:#fff;
    padding:25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 4px 18px rgba(0,0,0,0.06);
}

.gf-prayer-room-card h3{
    margin-bottom:15px;
}

.gf-prayer-room-online{
    color:#42b72a;
    font-weight:700;
    margin-bottom:20px;
}

.gf-join-room{
    border:none;
    background:#1877f2;
    color:#fff;
    padding:14px 24px;
    border-radius:40px;
    cursor:pointer;
    font-weight:700;
    font-size:15px;
}

.gf-room-chat-box{
    background:#fff;
    padding:25px;
    border-radius:18px;
    margin-top:30px;
    box-shadow:0 4px 18px rgba(0,0,0,0.06);
}

#gf-room-messages{
    height:350px;
    overflow-y:auto;
    border:1px solid #eee;
    border-radius:12px;
    padding:15px;
    margin-top:20px;
    margin-bottom:20px;
    background:#fafafa;
}

.gf-prayer-message{
    margin-bottom:15px;
    padding:10px;
    background:#fff;
    border-radius:10px;
}

#gf-prayer-message{
    width:100%;
    padding:14px;
    border-radius:12px;
    border:1px solid #ddd;
    margin-bottom:15px;
    box-sizing:border-box;
}

#gf-send-prayer-message{
    border:none;
    background:#42b72a;
    color:#fff;
    padding:14px 24px;
    border-radius:40px;
    cursor:pointer;
    font-weight:700;
}
.gf-notification-bar{
    margin-bottom:20px;
    position:relative;
}

#gf-open-notifications{
    border:none;
    background:#1877f2;
    color:#fff;
    padding:12px 22px;
    border-radius:40px;
    cursor:pointer;
    font-weight:700;
}

#gf-notification-list{
    display:none;
    background:#fff;
    border-radius:16px;
    padding:15px;
    margin-top:15px;
    box-shadow:0 4px 20px rgba(0,0,0,0.08);
}

.gf-notification-item{
    padding:12px;
    border-bottom:1px solid #eee;
}