 /* --- Global Container --- */
 .fbm-container {
     padding: 0 20px;
     font-family: 'Poppins', sans-serif;
 }

 a {
     text-decoration: none !important;
 }

 /* --- Card --- */
 .fbm-card {
     background: #ffffff;
     border-radius: 15px;
     padding: 40px 30px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     transition: transform 0.3s, box-shadow 0.3s;
 }

 .fbm-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
 }

 /* --- Form Title --- */
 .fbm-card h2 {
     font-size: 28px;
     font-weight: 700;
     color: #FF4C00;
     margin-bottom: 30px;
     text-align: center;
 }

 /* --- Form Field Wrapper --- */
 .fbm-field {
     margin-bottom: 20px;
     position: relative;
 }

 /* --- Label --- */
 .fbm-field label {
     display: block;
     font-weight: 500;
     margin-bottom: 6px;
     color: #333;
 }

 /* --- Inputs --- */
 .fbm-input {
     width: 100%;
     padding: 26px !important;
     font-size: 14px;
     border: 1px solid #ddd;
     border-radius: 25px !important;
     transition: all 0.3s ease;
 }

 .fbm-input:focus {
     outline: none;
     border:1px solid #FF4C00 !important;
     box-shadow: 0 0 8px rgba(255, 76, 0, 0.3) !important;
 }

 /* --- Eye Icon --- */
 .fbm-field span {
     font-size: 18px;
     color: #555;
 }

 /* --- Buttons --- */
 .fbm-btn {
     display: block;
     width: 100%;
     padding: 12px;
     border-radius: 10px;
     border: none;
     font-size: 16px;
     font-weight: 600;
     background: #FF4C00;
     color: #fff;
     cursor: pointer;
     transition: all 0.3s;
 }

 .fbm-btn:hover {
     background: #e04300;
 }

 /* --- Secondary Button --- */
 .fbm-btn-secondary {
     display: inline-block;
     padding: 8px 20px;
     font-size: 14px;
     font-weight: 500;
     background: #f1f1f1;
     color: #333;
     border-radius: 8px;
     text-decoration: none;
     transition: all 0.3s;
 }

 .fbm-btn-secondary:hover {
     background: #e0e0e0;
 }

 /* --- Switch Text --- */
 .fbm-card div[style*="text-align:center;"] span {
     font-size: 14px;
     color: #666;
 }

 /* --- Google Button --- */
 .fbm-btn-google {
     display: flex;
     align-items: center;
     justify-content: center;
     background: #4285F4;
     color: #fff;
     font-weight: 600;
     border-radius: 10px;
     padding: 10px;
     margin-top: 10px;
     cursor: pointer;
     transition: background 0.3s;
 }

 .fbm-btn-google:hover {
     background: #357ae8;
 }

 .fbm-btn-google img {
     width: 20px;
     margin-right: 10px;
 }

 /* --- Responsive --- */
 @media(max-width:480px) {
     .fbm-card {
         padding: 30px 20px;
     }

     .fbm-card h2 {
         font-size: 24px;
     }

     .fbm-btn,
     .fbm-btn-google {
         font-size: 15px;
     }
 }

 .fbm-field div {
     position: relative;
 }

 .fbm-field div span {
     position: absolute;
     right: 15px;
     top: 50%;
     transform: translateY(-50%);
     cursor: pointer;
 }

 /* --- Sidebar Left --- */
 .fbm-sidebar-left {
     background: #fff;
     border-radius: 12px;
     padding: 20px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
 }

 .fbm-sidebar-title {
     font-weight: 600;
     font-size: 18px;
     margin-bottom: 20px;
     color: #FF4C00;
 }

 .fbm-sidebar-menu {
     list-style: none;
     padding: 0;
 }

 .fbm-sidebar-menu li {
     margin-bottom: 15px;
 }

 .fbm-sidebar-menu li a {
     text-decoration: none;
     color: #333;
     font-weight: 500;
     display: flex;
     align-items: center;
     gap: 8px;
     transition: 0.3s;
 }

 .fbm-sidebar-menu li a:hover {
     color: #FF4C00;
 }

 /* --- Write Post Button --- */
 .fbm-write-post-btn {
     margin-top: 20px;
     width: 100%;
     background: #FF4C00;
     color: #fff;
     font-weight: 600;
     padding: 10px;
     border-radius: 10px;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 6px;
     transition: 0.3s;
 }

 .fbm-write-post-btn:hover {
     background: #e04300;
 }

 /* --- Center Posts --- */
 .fbm-dashboard-center {
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .fbm-post-card {
     padding: 20px;
     border-radius: 12px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s, box-shadow 0.3s;
 }

 .fbm-post-card:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
 }

 /* --- Status Badges --- */
 .fbm-badge {
     display: inline-block;
     padding: 5px 12px;
     border-radius: 8px;
     font-size: 12px;
     margin-top: 10px;
 }

 .fbm-publish {
     background: #d4edda;
     color: #155724;
 }

 .fbm-pending {
     background: #fff3cd;
     color: #856404;
 }

 /* --- Sidebar Right --- */
 .fbm-sidebar-right {
     background: #fff;
     border-radius: 12px;
     padding: 20px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
 }

 .fbm-sidebar-right h3 {
     margin-bottom: 15px;
     color: #FF4C00;
 }

 .fbm-recent-post {
     margin-bottom: 12px;
     padding: 12px;
     border-radius: 8px;
     background: #f9f9f9;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
 }

 @media(max-width:1024px) {
     .fbm-dashboard-container {
         grid-template-columns: 200px 1fr;
     }

     .fbm-sidebar-right {
         display: none;
     }
 }

 @media(max-width:768px) {
     .fbm-dashboard-container {
         grid-template-columns: 1fr;
     }

     .fbm-sidebar-left {
         display: flex;
         justify-content: space-between;
     }

     .fbm-dashboard-center {
         margin-top: 20px;
     }
 }

 /* --- Sidebar Left --- */
 .fbm-sidebar-left {
     background: #fff;
     border-radius: 12px;
     padding: 20px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
 }

 .fbm-sidebar-title {
     font-weight: 600;
     font-size: 18px;
     margin-bottom: 20px;
     color: #FF4C00;
 }

 .fbm-sidebar-menu {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .fbm-sidebar-menu li {
     margin-bottom: 15px;
 }

 .fbm-sidebar-menu li a {
     text-decoration: none;
     color: #333;
     font-weight: 500;
     display: flex;
     align-items: center;
     gap: 8px;
     transition: 0.3s;
 }

 .fbm-sidebar-menu li a:hover {
     color: #FF4C00;
 }

 /* --- Write a Post Button --- */
 .fbm-write-post-btn {
     margin-top: 20px;
     width: 100%;
     background: #FF4C00;
     color: #fff;
     font-weight: 600;
     padding: 12px;
     border-radius: 10px;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     transition: 0.3s;
     text-align: center;
 }

 .fbm-write-post-btn:hover {
     background: #e04300;
 }

 /* --- Center Posts --- */
 .fbm-dashboard-center {
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .fbm-dashboard-title {
     font-size: 26px;
     font-weight: 700;
     color: #FF4C00;
     margin-bottom: 20px;
 }

 /* --- Post Card --- */
 .fbm-post-card {
     padding: 20px;
     border-radius: 12px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s, box-shadow 0.3s;
 }

 .fbm-post-card:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
 }

 .fbm-post-title {
     font-size: 20px;
     font-weight: 600;
     margin-bottom: 10px;
     color: #333;
 }

 .fbm-post-excerpt {
     font-size: 14px;
     color: #555;
 }

 /* --- Status Badges --- */
 .fbm-badge {
     display: inline-flex;
     align-items: center;
     gap: 5px;
     padding: 5px 12px;
     border-radius: 8px;
     font-size: 12px;
     margin-top: 10px;
     font-weight: 500;
 }

 .fbm-publish {
     background: #d4edda;
     color: #155724;
 }

 .fbm-pending {
     background: #fff3cd;
     color: #856404;
 }

 /* --- Sidebar Right --- */
 .fbm-sidebar-right {
     background: #fff;
     border-radius: 12px;
     padding: 20px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
 }

 .fbm-sidebar-right .fbm-sidebar-title {
     font-size: 20px;
     margin-bottom: 15px;
 }

 .fbm-recent-post {
     margin-bottom: 12px;
     padding: 12px;
     border-radius: 8px;
     background: #f9f9f9;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
 }

 .fbm-recent-title {
     font-weight: 600;
     display: block;
     margin-bottom: 4px;
 }

 .fbm-recent-author {
     font-size: 13px;
     color: #555;
     display: flex;
     align-items: center;
     gap: 5px;
 }

 /* --- No Posts Message --- */
 .fbm-no-posts {
     padding: 20px;
     text-align: center;
     font-size: 14px;
     color: #666;
     border-radius: 12px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 }

 /* --- Responsive --- */
 @media(max-width:1024px) {
     .fbm-dashboard-container {
         grid-template-columns: 200px 1fr;
     }

     .fbm-sidebar-right {
         display: none;
     }
 }

 @media(max-width:768px) {
     .fbm-dashboard-container {
         grid-template-columns: 1fr;
     }

     .fbm-sidebar-left {
         display: flex;
         justify-content: space-between;
         margin-bottom: 20px;
     }

     .fbm-dashboard-center {
         margin-top: 0;
     }
 }

 /* --- Create Post Page --- */
 .fbm-create-post-container {
     display: grid;
     grid-template-columns: 2fr 1fr;
     gap: 30px;
     font-family: 'Poppins', sans-serif;
 }

 /* Main area */
 .fbm-create-post-main {
     background: #fff;
     padding: 25px;
     border-radius: 12px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
 }

 .fbm-create-post-main h2 {
     color: #FF4C00;
     margin-bottom: 20px;
     font-weight: 700;
 }

 /* Form fields */
 .fbm-form-group {
     margin-bottom: 20px;
 }

 .fbm-form-group label {
     display: block;
     font-weight: 500;
     margin-bottom: 8px;
 }

 .fbm-form-group input[type="text"],
 .fbm-form-group input[type="file"],
 .fbm-form-group textarea {
     width: 100%;
     padding: 10px;
     border-radius: 8px;
     border: 1px solid #ccc;
     font-size: 14px;
     box-sizing: border-box;
 }

 /* Sidebar */
 .fbm-create-post-sidebar {
     background: #fff;
     padding: 20px;
     border-radius: 12px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
 }

 .fbm-checkbox {
     display: flex;
     align-items: center;
     gap: 8px;
     margin-bottom: 8px;
 }

 /* Submit Button */
 .fbm-btn-submit {
     background: #FF4C00;
     color: #fff;
     font-weight: 600;
     padding: 12px 20px;
     border-radius: 10px;
     cursor: pointer;
     border: none;
     font-size: 16px;
     transition: 0.3s;
 }

 .fbm-btn-submit:hover {
     background: #e04300;
 }

 /* Success/Error messages */
 .fbm-success-message,
 .fbm-error-message {
     margin-bottom: 20px;
     padding: 12px;
     border-radius: 8px;
     font-weight: 500;
 }

 .fbm-success-message {
     background: #d4edda;
     color: #155724;
 }

 .fbm-error-message {
     background: #f8d7da;
     color: #721c24;
 }

 /* Responsive */
 @media(max-width:1024px) {
     .fbm-create-post-container {
         grid-template-columns: 1fr;
     }

     .fbm-create-post-sidebar {
         margin-top: 20px;
     }
 }

 /* Left Sidebar */
 .fbm-sidebar-left {
     background: #fff;
     padding: 20px;
     border-radius: 8px;
     box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
 }

 .fbm-sidebar-title {
     font-weight: 700;
     font-size: 18px;
     margin-bottom: 15px;
     color: #FF4C00;
 }

 .fbm-sidebar-menu li {
     list-style: none;
     margin-bottom: 10px;
 }

 .fbm-sidebar-menu a {
     text-decoration: none;
     color: #333;
     font-weight: 500;
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .fbm-btn.fbm-write-post-btn {
     display: inline-block;
     margin-top: 20px;
     background: #FF4C00;
     color: #fff;
     padding: 8px 14px;
     border-radius: 6px;
     text-decoration: none;
     font-weight: 600;
 }

 .fbm-btn.fbm-write-post-btn:hover {
     background: #e04300;
 }

 /* Center Area */
 .fbm-dashboard-center {
     flex: 1;
 }

 .fbm-post-card {
     background: #fff;
     padding: 15px;
     margin-bottom: 15px;
     border-radius: 8px;
     box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
     position: relative;
 }

 .fbm-badge {
     display: inline-block;
     padding: 4px 8px;
     border-radius: 6px;
     font-size: 12px;
     font-weight: 600;
     margin-top: 8px;
 }

 .fbm-publish {
     background: #4CAF50;
     color: #fff;
 }

 .fbm-pending {
     background: #FF9800;
     color: #fff;
 }

 /* Edit/Delete Buttons */
 .fbm-post-actions {
     margin-top: 10px;
 }

 .fbm-post-actions .fbm-btn {
     display: inline-block;
     margin-right: 8px;
     padding: 6px 12px;
     border-radius: 6px;
     text-decoration: none;
     color: #fff;
     font-size: 14px;
     transition: 0.3s;
 }

 .fbm-edit-btn {
     background: #FF4C00;
 }

 .fbm-edit-btn:hover {
     background: #e04300;
 }

 .fbm-delete-btn {
     background: #555;
 }

 .fbm-delete-btn:hover {
     background: #333;
 }

 /* Right Sidebar */

 .fbm-sidebar-right .fbm-card {
     padding: 10px;
     margin-bottom: 10px;
     background: #fff;
     border-radius: 6px;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
 }

 .fbm-create-post-container {
     display: flex;
     gap: 20px;
     margin: 20px 0;
 }

 .fbm-create-post-form {
     flex: 1;
     background: #fff;
     padding: 20px;
     border-radius: 8px;
     box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
 }

 .fbm-create-post-form .fbm-field {
     margin-bottom: 15px;
 }

 .fbm-create-post-form label {
     display: block;
     font-weight: 600;
     margin-bottom: 6px;
 }

 .fbm-create-post-form input[type="text"],
 .fbm-create-post-form textarea {
     width: 100%;
     padding: 8px 10px;
     border: 1px solid #ddd;
     border-radius: 6px;
     font-size: 14px;
 }



 .fbm-btn.fbm-submit-btn {
     background: #FF4C00;
     color: #fff;
     padding: 8px 14px;
     border-radius: 6px;
     border: none;
     cursor: pointer;
     font-weight: 600;
 }

 .fbm-btn.fbm-submit-btn:hover {
     background: #e04300;
 }

 .fbm-success-msg {
     background: #4CAF50;
     color: #fff;
     padding: 10px;
     border-radius: 6px;
     margin-bottom: 15px;
 }

 .fbm-image-upload-box {
     display: block;
     padding: 20px;
     border: 2px dashed #FF4C00;
     text-align: center;
     cursor: pointer;
     border-radius: 8px;
     color: #FF4C00;
     font-weight: 600;
 }

 #fbm-image-preview img {
     margin-top: 10px;
     max-width: 100%;
     border-radius: 6px;
 }

 /* =========================
   DASHBOARD LAYOUT
========================= */
 .fbm-dashboard-container {
     display: grid;
     grid-template-columns: 250px 1fr 300px;
     gap: 20px;
     padding: 20px;
 }

 .fbm-heading {
     color: #FF4C00;
     margin-bottom: 20px;
 }

 /* =========================
   SIDEBAR
========================= */

 .fbm-sidebar-title {
     font-size: 18px;
     font-weight: bold;
     margin-bottom: 20px;
 }

 .fbm-sidebar-menu {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .fbm-sidebar-menu li {
     margin-bottom: 10px;
 }

 .fbm-sidebar-menu a {
     color: #fff;
     text-decoration: none;
     display: block;
     padding: 10px;
     border-radius: 6px;
 }

 .fbm-sidebar-menu a:hover {
     background: #FF4C00;
 }

 /* =========================
   BUTTONS
========================= */
 .fbm-btn {
     display: inline-block;
     padding: 8px 12px;
     background: #FF4C00;
     color: #fff;
     border-radius: 6px;
     text-decoration: none;
     font-size: 14px;
 }

 .fbm-write-post-btn {
     margin-top: 20px;
     display: block;
     text-align: center;
 }

 /* =========================
   POST CARDS
========================= */
 .fbm-card {
     background: #fff;
     padding: 15px;
     border-radius: 10px;
     margin-bottom: 15px;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
 }

 .fbm-post-card {
     display: flex;
     gap: 15px;
 }

 .fbm-post-thumb img {
     width: 120px;
     height: 90px;
     object-fit: cover;
     border-radius: 8px;
 }

 /* Content */
 .fbm-post-content {
     flex: 1;
 }

 .fbm-post-content h3 {
     margin: 0 0 5px;
 }

 .fbm-post-content p {
     font-size: 14px;
     color: #555;
 }

 /* Badge */
 .fbm-badge {
     display: inline-block;
     padding: 4px 8px;
     font-size: 12px;
     border-radius: 4px;
     margin-top: 5px;
 }

 .fbm-publish {
     background: #28a745;
     color: #fff;
 }

 .fbm-pending {
     background: #ffc107;
     color: #000;
 }

 /* Actions */
 .fbm-post-actions {
     margin-top: 10px;
     display: flex;
     gap: 10px;
     text-align: center;
 }

 .fbm-edit-btn {
     background: #007bff;
 }

 .fbm-delete-btn {
     background: #dc3545;
 }

 /* =========================
   RECENT POSTS
========================= */
 .fbm-sidebar-right {
     background: #f9f9f9;
     padding: 15px;
     border-radius: 10px;
 }

 .fbm-recent-post {
     display: flex;
     gap: 10px;
     align-items: center;
 }

 .fbm-recent-thumb img {
     width: 60px;
     height: 60px;
     object-fit: cover;
     border-radius: 6px;
 }

 .fbm-recent-content strong {
     display: block;
     font-size: 14px;
 }

 .fbm-recent-content small {
     font-size: 12px;
     color: #777;
 }

 /* =========================
   RESPONSIVE
========================= */
 @media (max-width: 992px) {
     .fbm-dashboard-container {
         grid-template-columns: 1fr;
     }

     .fbm-sidebar-left,
     .fbm-sidebar-right {
         order: 2;
     }

     .fbm-dashboard-center {
         order: 1;
     }
 }

 .fbm-recent-link {
     text-decoration: none;
     color: inherit;
 }

 .fbm-recent-link:hover {
     color: #FF4C00;
 }

 .fbm-recent-thumb a {
     display: block;
 }

 .fbm-view-btn {
     background: #28a745;
     color: #fff;
 }

 .fbm-view-btn:hover {
     background: #218838;
 }

 /* --------------------------
   Frontend Blog Manager Forms
--------------------------- */

 .fbm-container {
     display: flex;
     justify-content: center;
     align-items: center;
     margin: 30px 0;
 }

 .fbm-card {
     background: #fff;
     padding: 30px;
     border-radius: 12px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     width: 100%;
 }

 .fbm-card h2 {
     font-size: 24px;
     font-weight: 700;
     margin-bottom: 25px;
     color: #FF4C00;
 }

 .fbm-field {
     margin-bottom: 18px;
     text-align: left;
 }

 .fbm-field label {
     display: block;
     font-weight: 600;
     margin-bottom: 5px;
     font-size: 14px;
 }

 .fbm-input {
     width: 100%;
     padding: 10px 12px;
     font-size: 14px;
     border: 1px solid #ddd;
     border-radius: 6px;
     transition: all 0.3s ease;
 }

 .fbm-input:focus {
     outline: none;
     border-color: #FF4C00;
     box-shadow: 0 0 5px rgba(255, 76, 0, 0.3);
 }

 .fbm-btn,
 .fbm-btn-secondary {
     display: inline-block;
     padding: 10px 18px;
     border-radius: 6px;
     font-weight: 600;
     font-size: 14px;
     cursor: pointer;
     border: none;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .fbm-btn {
     background: #FF4C00;
     color: #fff;
 }

 .fbm-btn:hover {
     background: #e24300;
 }

 .fbm-btn-secondary {
     background: #f2f2f2;
     color: #333;
     border: 1px solid #ddd;
 }

 .fbm-btn-secondary:hover {
     background: #e6e6e6;
 }

 .fbm-field span {
     font-size: 12px;
     color: #888;
 }

 .fbm-field input[type="password"]+span {
     user-select: none;
 }

 .fbm-card p {
     font-size: 14px;
     margin-bottom: 10px;
     color: #555;
 }

 .fbm-card a {
     text-decoration: none;
     color: #FF4C00;
     font-weight: 600;
 }

 .fbm-card a:hover {
     text-decoration: underline;
 }

 .fbm-card small {
     font-size: 12px;
     color: #999;
 }

 .fbm-card button {
     width: 100%;
     padding: 20px;
     border-radius: 25px;
 }

 .fbm-card .fbm-otp-note {
     font-size: 12px;
     color: #555;
     margin-top: -10px;
     margin-bottom: 10px;
 }

 /* Responsive */
 @media (max-width: 480px) {
     .fbm-card {
         padding: 20px;
     }
 }