/* =============================
   HEADER WRAPPER
============================= */
.jdbar-header-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

/* =============================
   BOTTOM BAR (IMPORTANT PART)
============================= */
.jdbar-bottom-bar {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3px);
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.45);
    z-index: 2;
}

/* Inner Layout */
.jdbar-inner-container {
    margin: 0 auto;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =============================
   LOGO
============================= */
.jdbar-logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.jdbar-logo-circle {
    background: #2e7d32;
    padding: 8px 12px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
}

.jdbar-logo-text {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* =============================
   SEARCH
============================= */
/* =============================
   SEARCH (DARK STYLE)
============================= */
.jdbar-search-section {
    position: relative;
    width: 420px;
}

.jdbar-search-input {
    width: 100%;
    padding: 11px 42px 11px 16px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.15);
    background: #3a3a3a;   /* Dark background */
    color: #ffffff;
    font-size: 14px;
    transition: all 0.2s ease;
}
.jdbar-logo-section img {
    width: 65%;
}
/* Placeholder color */
.jdbar-search-input::placeholder {
    color: #cfcfcf;
}

/* Focus effect */
.jdbar-search-input:focus {
    outline: none;
    background: #444;
    border-color: rgba(255,255,255,0.3);
}

/* Search icon */
.jdbar-search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: #cfcfcf;
    pointer-events: none;
}


/* =============================
   LOGIN
============================= */
.jdbar-login-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.jdbar-login-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.jdbar-login-link:hover {
    text-decoration: underline;
}

.jdbar-menu-dots {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 992px) {
    .jdbar-inner-container {
        flex-direction: column;
        gap: 12px;
    }

    .jdbar-search-section {
        width: 100%;
        max-width: 500px;
    }
}


/* ===============================
   GLOBAL RESET
================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f0f3f5;
    color: #333;
    line-height: 1.6;
}

/* ===============================
   HEADER
================================= */
.jd-header-wrapper {
    background: #1b5e20;
    padding: 15px 40px;
    color: #fff;
}

.jd-header-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.jd-header-logo {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
}

.jd-header-search {
    flex: 1;
    text-align: center;
}

.jd-search-input {
    width: 50%;
    padding: 8px 12px;
    border-radius: 4px;
    border: none;
}

.jd-header-login {
    font-size: 14px;
    cursor: pointer;
}

/* ===============================
   BREADCRUMB
================================= */
.jd-breadcrumb-nav {
    background: #e8efe8;
    padding: 10px 40px;
    font-size: 14px;
}

.jd-breadcrumb-link {
    text-decoration: none;
    color: #1b5e20;
    margin-right: 5px;
}

.jd-breadcrumb-link:hover {
    text-decoration: underline;
}

/* ===============================
   MAIN LAYOUT
================================= */
.jd-main-container {
    display: flex;
    gap: 25px;
    padding: 30px 40px;
}

/* ===============================
   CONTENT SECTION
================================= */
.jd-content-section {
    flex: 4;
}

.jd-thread-title {
    font-size: 28px;
    margin-bottom: 10px;
}

.jd-thread-tag {
    background: #c8e6c9;
    color: #1b5e20;
    padding: 6px 10px;
    display: inline-block;
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 20px;
}

/* ===============================
   POST CARD
================================= */
.jd-post-card {
    display: flex;
    gap: 20px;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.jd-post-user {
    width: 200px;
}

.jd-user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.jd-username {
    font-weight: bold;
    color: #1b5e20;
}

.jd-user-role {
    font-size: 13px;
    color: #777;
    margin: 3px 0;
}

.jd-user-meta {
    font-size: 12px;
    color: #999;
}

.jd-post-content {
    flex: 1;
}

.jd-post-meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

.jd-post-text {
    margin-bottom: 15px;
}

.jd-post-actions button {
    background: #1b5e20;
    color: #fff;
    border: none;
    padding: 6px 12px;
    margin-right: 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}

.jd-post-actions button:hover {
    background: #2e7d32;
}

/* ===============================
   SIDEBAR
================================= */
.jd-sidebar-section {
    flex: 1;
}

.jd-sidebar-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06)
}

.jd-sidebar-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #1b5e20;
}

.jd-sidebar-stats .jd-stat-item {
    font-size: 14px;
    margin-bottom: 6px;
}

.jd-sidebar-description {
    font-size: 14px;
    margin-bottom: 10px;
}

.jd-sidebar-link {
    color: #1b5e20;
    text-decoration: none;
    font-weight: bold;
}

.jd-sidebar-link:hover {
    text-decoration: underline;
}

.jd-sidebar-list {
    list-style: none;
}

.jd-sidebar-list-item {
    margin-bottom: 8px;
}

.jd-sidebar-list-item a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.jd-sidebar-list-item a:hover {
    color: #1b5e20;
}

/* ===============================
   RESPONSIVE DESIGN
================================= */
@media (max-width: 992px) {
    .jd-main-container {
        flex-direction: column;
    }

    .jd-post-card {
        flex-direction: column;
    }

    .jd-post-user {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .jd-user-avatar {
        width: 60px;
        height: 60px;
    }

    .jd-header-search .jd-search-input {
        width: 80%;
    }
}

@media (max-width: 600px) {
    .jd-header-banner {
        flex-direction: column;
        gap: 10px;
    }

    .jd-search-input {
        width: 100%;
    }

    .jd-thread-title {
        font-size: 22px;
    }
}








/* Unique Wrapper */
.vla-forum-wrapper {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    padding: 20px 40px;
    border-bottom: 1px solid #e5e5e5;
}

/* Breadcrumb */
.vla-breadcrumb {
    font-size: 14px;
    color: #6b6f72;
}

.vla-breadcrumb a {
    text-decoration: none;
    color: #6b6f72;
}

.vla-breadcrumb span {
    margin: 0 6px;
}

/* Title */
.vla-thread-title {
    font-size: 34px;
    font-weight: 500;
    color: #2c2c2c;
}

/* Tag */
.vla-thread-tag {
    display: inline-block;
    font-size: 14px;
    color: #2a7c2e;
}

/* Right Controls */
.vla-thread-controls {
    float: right;
    font-size: 14px;
}

.vla-thread-controls a {
    margin-left: 15px;
    text-decoration: none;
    color: #2a7c2e;
}

/* Clearfix */
.vla-clear {
    clear: both;
}












/* Top counter */
.jdforum3-count {
    padding: 20px 30px 10px 30px;
    font-size: 14px;
    color: #444;
}

/* Card */
.jdforum3-card {
    margin: 0 30px 40px 30px;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
}

/* LEFT COLUMN (Gray Background) */
.jdforum3-usercol {
    width: 160px;
    background: #f4f6f4; /* light gray like screenshot */
    padding: 20px 15px;
}

.jdforum3-username {
    color: #2e7d32;
    font-weight: 600;
    font-size: 15px;
    word-break: break-word;
    margin-bottom: 4px;
}
i.fa.fa-check {
    background: #2e7d32;
    color: #fff;
    border-radius: 50%;
    font-size: 8px;
    padding: 3px;
}
i.fa.fa-thumbs-up {
    background: #1d99c9;
    color: #fff;
    border-radius: 50%;
    font-size: 8px;
    padding: 3px;
}
.jdforum3-role {
    font-size: 13px;
    color: #444;
    margin-bottom: 8px;
}

.jdforum3-meta {
    font-size: 12px;
    color: #777;
    line-height: 1.4;
}

/* RIGHT CONTENT */
.jdforum3-content {
    flex: 1;
    padding: 22px 25px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
}

.jdforum3-header {
    font-size: 13px;
    color: #666;
    margin-bottom: 14px;
}

.jdforum3-header strong {
    color: #2e7d32;
    font-weight: 600;
}

.jdforum3-text {
    font-size: 15px;
    color: #222;
    line-height: 1.6;
    margin-bottom: 18px;
}

.jdforum3-signature {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    border-top: 1px solid #ccc;
    padding-top: 15px;
}

/* Footer */
.jdforum3-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-top: 18px;
}

.jdforum3-reactions {
    color: #1b5e20;
}

.jdforum3-actions span {
    margin-left: 18px;
    color: #666;
    cursor: pointer;
}

.jdforum3-actions span:hover {
    text-decoration: underline;
}












.discussion-card-ux91 {
  width: 300px;
  background-color: #f3f3f3;
  padding: 16px;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  border: 1px solid #ddd;
}

.discussion-title-ux91 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px 0;
}

.discussion-stats-ux91 {
  display: flex;
  gap: 40px;
  margin-bottom: 16px;
}

.discussion-stat-item-ux91 {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.discussion-stat-number-ux91 {
  font-size: 28px;
  font-weight: 600;
  color: #222;
}

.discussion-stat-label-ux91 {
  font-size: 14px;
  color: #666;
}

.discussion-divider-ux91 {
  border: none;
  border-top: 1px solid #ccc;
  margin: 12px 0;
}

.discussion-lastpost-ux91 {
  font-size: 14px;
}

.discussion-lastpost-label-ux91 {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.discussion-lastpost-link-ux91 {
  color: #1f7a6b;
  text-decoration: none;
}

.discussion-lastpost-link-ux91:hover {
  text-decoration: underline;
}
















.forum-card-xz47 {
  width: 320px;
  background-color: #f1f1f1;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid #d8d8d8;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.forum-title-xz47 {
  margin: 0 0 12px 0;
  font-size: 20px;
  font-weight: 600;
  color: #2b2b2b;
}

.forum-description-xz47 {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
  color: #444;
}

.forum-full-listing-link-xz47 {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 14px;
  color: #1f7a6b;
  text-decoration: none;
  font-weight: 500;
}

.forum-full-listing-link-xz47:hover {
  text-decoration: underline;
}

.forum-divider-xz47 {
  border: none;
  border-top: 1px solid #d0d0d0;
  margin: 14px 0;
}

.forum-explore-title-xz47 {
  margin: 0 0 12px 0;
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

.forum-list-xz47 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.forum-list-item-xz47 {
  margin-bottom: 10px;
}

.forum-link-xz47 {
  font-size: 14px;
  color: #1f7a6b;
  text-decoration: none;
}

.forum-link-xz47:hover {
  text-decoration: underline;
}





















.rec-card-qw82 {
  width: 320px;
  background-color: #f1f1f1;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid #d8d8d8;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.rec-title-qw82 {
  margin: 0 0 16px 0;
  font-size: 18px;
  font-weight: 600;
  color: #2b2b2b;
}

.rec-list-qw82 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rec-item-qw82 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.rec-icon-qw82 {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}

/* Icon background variations */
.rec-icon-gt-qw82 {
  background-color: #1f4d1f;
}

.rec-icon-hv-qw82 {
  background-color: #c86b1d;
}

.rec-icon-pa-qw82 {
  background-color: #5a2a16;
}

.rec-content-qw82 {
  flex: 1;
}

.rec-name-qw82 {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #1f7a6b;
  text-decoration: none;
  margin-bottom: 4px;
}

.rec-name-qw82:hover {
  text-decoration: underline;
}

.rec-meta-qw82 {
  font-size: 13px;
  color: #666;
}

.rec-badge-qw82 {
  display: inline-block;
  background-color: #1f7a6b;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 4px;
}
















/* ===== BREADCRUMB SECTION ===== */
.jd-breadcrumb-bar-xt92 {
    background-color: #f6f6f6;
    padding: 12px 40px;
    font-size: 14px;
    color: #555;
}

.jd-breadcrumb-bar-xt92 a {
    text-decoration: none;
    color: #1f7a6b;
    margin-right: 6px;
}

.jd-breadcrumb-bar-xt92 span {
    margin-right: 6px;
}

/* ===== DARK FOOTER SECTION ===== */
.jd-dark-footer-xt92 {
    background-color: #1f1f1f;
    color: #ffffff;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* LEFT CONTENT */
.jd-footer-left-xt92 {
    max-width: 70%;
}

.jd-footer-nav-xt92 {
    margin-bottom: 15px;
}

.jd-footer-nav-xt92 a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 15px;
    font-size: 14px;
}

.jd-footer-info-xt92 {
    font-size: 13px;
    color: #cccccc;
    margin-bottom: 10px;
}

/* RIGHT CONTENT */
.jd-footer-right-xt92 {
    text-align: right;
}

.jd-fora-logo-xt92 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.jd-bbb-badge-xt92 {
    font-size: 12px;
    background: #444;
    padding: 6px 10px;
    display: inline-block;
    border-radius: 4px;
    margin-bottom: 8px;
}

.jd-manage-consent-xt92 {
    display: block;
    font-size: 13px;
    color: #ffffff;
    text-decoration: underline;
    margin-top: 5px;
}


















/* Page background */
/* Shared container width */
.ux-thread-container {
  max-width: 1120px;
  margin: 0 auto 25px;
  padding: 0 20px;
}

/* Warning alert */
.ux-thread-alert {
  background-color: #f6f6f6;
  border-left: 4px solid #2ea44f;
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 14px;
  color: #000;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

/* Discussion card */
.ux-discussion-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
}

/* Heading */
.ux-discussion-heading {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 600;
  color: #2c2c2c;
}

/* Login row */
.ux-login-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Links */
.ux-login-link {
  font-size: 14px;
  color: #1b5e20;
  text-decoration: none;
}

.ux-login-link:hover {
  text-decoration: underline;
}

/* Muted text */
.ux-login-muted {
  font-size: 14px;
  color: #555;
}

/* Google wrapper */
.ux-google-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Google icon */
.ux-google-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 13px;
  color: #db4437;
}














/* Outer background strip */
.ux-feedback-wrapper {
  background-color: #dfe3e6;
  padding: 18px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Main rounded box */
.ux-feedback-box {
    margin: 0 auto;
    background-color: #fff;
    border: 1px solid #cfd4d8;
    border-radius: 10px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    margin-top: 120px;
}

/* Left text */
.ux-feedback-left {
  font-size: 15px;
  color: #3f4a54;
}

/* Right side buttons container */
.ux-feedback-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Buttons */
.ux-feedback-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #3f4a54;
  padding: 6px 8px;
  transition: opacity 0.2s ease;
}

.ux-feedback-btn:hover {
  opacity: 0.75;
}

/* Icon styling */
.ux-feedback-icon {
  font-size: 22px;
  line-height: 1;
}

/* Text styling */
.ux-feedback-text {
  font-size: 15px;
}






















/* Outer page spacing */
.ux-info-card-wrapper {
  background-color: #dfe3e6;
  padding: 16px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Card container */
.ux-info-card {
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid #cfd4d8;
  border-radius: 10px;
  padding: 18px 22px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
}

/* Title */
.ux-info-title {
  margin: 0;
  font-size: 20px;
  font-weight: 100;
  color: #2f6f5f; /* subtle green tone like screenshot */
}

/* Subtitle */
.ux-info-subtitle {
  margin-top: 4px;
  font-size: 14px;
  color: #3f4a54;
}

/* Bottom row */
.ux-info-meta-row {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Stats (left side) */
.ux-info-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ux-info-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #5c6770;
}

.ux-info-stat-icon {
  font-size: 15px;
  opacity: 0.8;
}

/* Author section (right side) */
.ux-info-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #5c6770;
}

/* Avatar */
.ux-info-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

/* Separator dot */
.ux-info-separator {
  margin: 0 2px;
}

/* Updated text */
.ux-info-updated {
  color: #6c757d;
}











/* ===============================
   RESPONSIVE DESIGN
================================= */
@media (max-width: 767px) {
	
.jdforum3-card {
    display: unset;
}
.jdforum3-content {
    background: #fff;
}
.ux-feedback-box {
    display: block;
}	
.ux-info-meta-row {
    display: block;
}
.jd-dark-footer-xt92 {
    flex-wrap: unset;
}

}