/*
Theme Name: JNews
Version: 11.2.1
Theme URI: http://themeforest.net
Description: JNews
Author: Jegtheme
Author URI: http://jegtheme.com/
License: GNU General Public License v2.0
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags:  custom-background,custom-colors, custom-menu, editor-style, featured-images, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready
Text Domain: jnews
*/
/* ====== User Post Nav Buttons ====== */
.fps-user-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px auto;
    padding: 15px;
    max-width: 900px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.fps-nav-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.fps-btn {
    background: #e7f0f7;
    color: #0073aa;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.06);
    border: 1px solid transparent;
}

.fps-btn:hover {
    background: #0073aa;
    color: #fff;
}

.fps-btn.active {
    background: #0073aa;
    color: #fff;
    border-color: #005077;
}

.fps-btn.add-new {
    background-color: #28a745;
    color: white;
}

.fps-btn.add-new:hover {
    background-color: #218838;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

/* Responsive Design */
@media screen and (max-width: 600px) {
    .fps-user-nav {
        padding: 10px;
    }
    .fps-nav-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .fps-btn {
        display: block;
        width: 100%;
        text-align: center;
    }
}