@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Lato:wght@400;700&family=Space+Mono:wght@400;700&display=swap');

:root {
  --bg-color: hsl(205, 30%, 12%);
  --text-color: hsl(205, 10%, 85%);
  --ele-blue: hsl(205, 30%, 10%);
  --box-blue: hsl(205, 28%, 16%);
  --orange-color: hsl(35, 100%, 58%);
  --border-color: hsl(205, 20%, 22%);
  --btn-border-color: hsl(205, 20%, 20%);
  --text-muted-color: hsl(205, 10%, 60%);
  --text-aqua-color: hsl(170, 60%, 50%);

  --lato-font: 'Lato', sans-serif;
  --bebas-font: 'Bebas Neue', sans-serif;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* list-style: none; */
}

body {
  font-family: var(--lato-font);
  font-size: 14px;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--bg-color);
  color: var(--text-color);
  scroll-behavior: smooth;
  overflow-y: scroll; /* Ensures scroll behavior without forcing the scrollbar */
}

body::-webkit-scrollbar {
  width: 0; /* Chrome, Safari, Edge */
  background: transparent;
}

a,
button {
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  height: 100%;
  padding: 0 8px;
}

section {
  margin-bottom: 20px;
}

/* 404 NOT FOUND */
.page-not-found {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.page-not-found a {
  color: var(--text-aqua-color);
}

.page-not-found a:hover {
  color: rgba(255, 147, 30, 0.9);
}

/* HEADER */
header {
  width: 100%;
  height: auto;
  position: sticky;
  top: 0;
  z-index: 99;
}

header .topbar {
  background: var(--ele-blue);
  height: auto;
  padding: 5px 0;
  border-bottom: 1px solid var(--border-color);
}

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

header .left {
  display: flex;
  align-items: center;
  gap: 8px;
}

header .left img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  cursor: pointer;
}

header .right {
  display: flex;
  align-items: center;
  position: relative;
}

header .right input {
  display: flex;
  width: 450px;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  outline: none;
  height: 36px;
  padding: 4px 16px;
  border-radius: 6px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  color: white;
}

header .right img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  margin-left: 30px;
  object-fit: cover;
  cursor: pointer;
}

header .right button {
  background: var(--orange-color);
  display: flex;
  align-items: center;
  height: 36px;
  padding: 8px;
  border-radius: 5px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  color: white;
  border: 1px solid transparent;
  margin-left: -2px;
  transition: all 0.3s ease;
  font-weight: bold;
}

header .right button:hover {
  background: rgba(255, 147, 30, 0.9);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

header .right button.login {
  margin-left: 50px;
  border-radius: 5px;
}

/* header .right .user-info {
  display: flex;
  align-items: center;
  gap: 5px;
} */

.user-info {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.useravatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  vertical-align: middle;
}

.username {
  margin-left: 8px;
  color: #fff;
  font-weight: 600;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  width: auto;
  min-width: 180px;
  background-color: #1e1e1e;
  border: 1px solid #444;
  border-radius: 4px;
  padding: 10px;
  z-index: 1000;
  text-align: right;
}

.dropdown-menu a {
  display: block;
  color: #fff;
  padding: 5px 10px;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.dropdown-menu a:hover {
  background-color: #333;
}

/* NAV */
nav {
  background: var(--ele-blue);
  height: auto;
}

nav .topmenu {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 8px 0;
}

nav .topmenu-item {
  /* background: var(--box-blue);
  border-radius: 6px; */
  display: flex;
  align-items: center;
}

nav .topmenu-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-color);
  transition: all 0.3s ease;
}

nav .topmenu-link:hover,
nav .topmenu-link.active {
  color: var(--orange-color);
}

nav .topmenu-link i {
  font-size: 22px;
}

/* Dropdown container */
.topmenu-item.dropdown {
  position: relative;
}

/* Initial hidden state */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #222;
  border: 1px solid #444;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 180px;

  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

/* Links inside submenu */
.submenu li a {
  display: block;
  padding: 0.8rem 1rem;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.submenu li a:hover {
  background: #333;
}

/* Show submenu with slide effect on hover */
.topmenu-item.dropdown:hover .submenu {
  max-height: 500px; /* Adjust based on content height */
  opacity: 1;
  pointer-events: auto;
}

.arrow {
  font-size: 0.7em;
  margin-left: 4px;
}

/* BANNER */
.banner {
  background: url('/assets/images/banner.jpg');
  background-position: center;
  background-size: cover;
  height: 600px;
}

.banner .overlay {
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
}

.banner .overlay .container {
  height: 100%;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner .overlay .container h1 {
  font-size: 4.5rem;
  line-height: 1;
  font-weight: inherit;
  text-transform: uppercase;
  color: var(--text-color);
  font-family: var(--bebas-font);
}

.banner .overlay .container p {
  font-size: 1.5rem;
  line-height: 2rem;
  margin: 0 auto 2rem;
  max-width: 42rem;
  color: rgba(var(--default-txt), 0.9);
}

.banner .overlay .container .cta {
  background: var(--orange-color);
  text-transform: uppercase;
  outline: none;
  border: none;
  color: white;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-family: '', sans-serif;
  padding: 0 2rem;
  font-family: var(--bebas-font);
  border-radius: 5px;
  white-space: nowrap;
  height: 2.75rem;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  cursor: pointer;
  transition: all 0.3s;
}

.banner .overlay .container .cta:hover {
  background: rgba(255, 147, 30, 0.9);
}

/* STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 20px;
  margin-bottom: 20px;
}

.stats-grid .stat-box {
  background: var(--box-blue);
  width: 100%;
  height: 135px;
  margin: 0 auto;
  border-radius: 5px;
  padding: 1.2rem 2rem;
  border: 1px solid var(--border-color);
}

.stat-box .stat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-box .stat-head .stat-title {
  color: var(--orange-color);
  letter-spacing: -0.025em;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-transform: capitalize;
}

.stat-box .stat-head .stat-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--text-muted-color);
}

.stat-box .stat-number {
  font-size: 1.875rem;
  line-height: 2.25rem;
  padding: 0.6rem 0;
  color: var(--text-color);
  font-weight: bold;
  font-family: var(--bebas-font);
}

.stat-box .stat-tag {
  color: var(--text-muted-color);
  font-size: 0.75rem;
  line-height: 1rem;
}

/* FEATURES */
.features {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  margin-bottom: 20px;
}

.features h2 {
  font-size: 1.875rem;
  line-height: 2.25rem;
  letter-spacing: 0.025em;
  font-family: var(--bebas-font);
  color: var(--orange-color);
  font-weight: inherit;
}

.features .material-symbols-outlined {
  font-size: 3rem;
  color: var(--orange-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 20px;
  margin-bottom: 20px;
}

.feature-box {
  border: 1px solid var(--border-color);
  background: var(--box-blue);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}

.feature-box .feature-title {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-box .feature-title-box {
  gap: 0.75rem;
  align-items: center;
  display: flex;
}

.feature-box .feature-title-icon {
  padding: 0.75rem;
  background: rgba(255, 147, 30, 0.1);
  color: var(--orange-color);
  border-radius: 50%;
  display: flex;
}

.feature-box .title {
  color: var(--orange-color);
  letter-spacing: -0.025rem;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.feature-box .feature-tag {
  padding: 1.5rem;
  padding-top: 0;
  flex-grow: 1;
}

.feature-box .feature-tag p {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--text-muted-color);
}

.feature-box .feature-btn {
  padding: 1.5rem;
  padding-top: 0;
}

.feature-box .feature-btn button {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.5rem 1rem;
  background: var(--bg-color);
  border: 1px solid var(--btn-border-color);
  border-radius: calc(0.5rem - 2px);
  white-space: nowrap;
  gap: 0.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 2.5rem;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.3s;
}

.feature-box .feature-btn button:hover {
  background: rgba(255, 147, 30, 0.9);
  color: white;
}

.feature-box .feature-btn button span {
  font-size: 1rem;
  margin-left: 0.5rem;
}

/* EXPLORE */
.explore {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  margin-bottom: 20px;
}

.explore h2 {
  font-size: 1.875rem;
  line-height: 2.25rem;
  letter-spacing: 0.025em;
  font-family: var(--bebas-font);
  color: var(--orange-color);
  font-weight: inherit;
}

.explore .material-symbols-outlined {
  font-size: 3rem;
  color: var(--orange-color);
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 20px;
  margin-bottom: 20px;
}

.explore-box {
  border: 1px solid var(--border-color);
  background: var(--box-blue);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}

.explore-box .explore-title {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 14px;
}

.explore-box .explore-title-box {
  gap: 0.75rem;
  align-items: center;
  display: flex;
}

.explore-box .explore-title-icon {
  padding: 0.75rem;
  background: rgba(255, 147, 30, 0.1);
  color: var(--orange-color);
  border-radius: 50%;
  display: flex;
}

.explore-box .title {
  color: var(--orange-color);
  letter-spacing: -0.025rem;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.explore-box .explore-tag {
  padding: 1.5rem;
  padding-top: 0;
  flex-grow: 1;
}

.explore-box .explore-tag p {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--text-muted-color);
}

.explore-box .explore-btn {
  padding: 1.5rem;
  padding-top: 0;
}

.explore-box .explore-btn button {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.5rem 1rem;
  background: var(--orange-color);
  border: 1px solid var(--btn-border-color);
  border-radius: calc(0.5rem - 2px);
  white-space: nowrap;
  gap: 0.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 2.5rem;
  color: var(--bg-color);
  cursor: pointer;
  transition: all 0.3s;
}

.explore-box .explore-btn button:hover {
  background: rgba(255, 147, 30, 0.9);
  color: white;
}

.explore-box .explore-btn button span {
  font-size: 1rem;
  margin-left: 0.5rem;
}

/* PAGES TITLE & ICON */
.top-box {
  margin: 20px 0;
}

.top-box .page-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-color);
}

.top-box .page-title i {
  font-size: 2.5rem;
  display: flex;
}

.top-box .page-title h1 {
  text-transform: uppercase;
  letter-spacing: 0.025em;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-family: var(--bebas-font);
  font-weight: inherit;
  margin-top: 0.3rem;
}

.top-box .page-tagline {
  color: var(--text-muted-color);
  margin: 0.5rem 0 2rem 0;
}

/* BLOG */
.blog-box {
  display: flex;
  justify-content: space-between;
  gap: 8rem;
}

.blog-box .blog-post-box {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.new-post-box {
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--box-blue);
  border-radius: 5px;
  border: 1px solid var(--border-color);
  gap: 0.75rem;
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.post-box-avatar .useravatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.post-box-ui {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.post-box-ui input {
  height: 2.3rem;
  width: 100%;
  border-radius: 5px;
  border: 1px solid var(--btn-border-color);
  font-size: 0.875rem;
  line-height: 1.25rem;
  flex-grow: 1;
  padding: 0.5rem 0.75rem;
  background: var(--bg-color);
  color: white;
}

.post-box-btns {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.post-box-btns .img-up {
  color: var(--text-muted-color);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.post-box-btns .img-up:hover {
  color: var(--orange-color);
}

.post-box-btns .img-up:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.post-box-btns .img-up .material-symbols-outlined:first-child {
  font-size: 18px;
}

.post-box-btns button[type='submit'] {
  padding: 0.4rem 1rem;
  border-radius: 5px;
  border: none;
  outline: none;
  background: var(--orange-color);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s;
}

.post-box-btns button[type='submit']:hover {
  background: rgba(255, 147, 30, 0.9);
}

.post-box-btns a button[type='submit'] .material-symbols-outlined {
  font-size: 1.2rem;
  rotate: -45deg;
  margin-top: -2px;
}

.blog-card {
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  background: var(--box-blue);
  margin-bottom: 2rem;
}

.blog-card .blog-card-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.blog-card .blog-user-avatar .useravatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.blog-card .blog-user a {
  color: var(--text-color);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: -0.025em;
}

.blog-card .blog-user a:hover {
  color: var(--orange-color);
}

.blog-card .blog-posted-ago {
  color: var(--text-muted-color);
  font-size: 0.75rem;
  line-height: 1rem;
}

.blog-card .blog-card-content {
  padding: 1rem;
  padding-top: 0.5rem;
}

.blog-card .blog-content {
  color: var(--text-color);
  line-height: 1.625;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.blog-card .blog-image {
  border-radius: 5px;
  overflow: hidden;
  /* aspect-ratio: 16 / 9; */
  margin-bottom: 1rem;
  width: 100%;
  max-height: 40rem;
}

.blog-card .blog-image div {
  background: var(--text-color);
  width: 100%;
  height: 300px;
}

.blog-card .blog-image img {
  background: var(--text-color);
  width: 100%;
  height: auto;
}

.blog-card .blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  border-top: 1px solid var(--border-color);
}

.blog-card .blog-post-stats {
  display: flex;
  gap: 0.5rem;
}

.blog-card .blog-post-stats button {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  border-radius: 5px;
  height: 2.25rem;
  padding: 0 0.75rem;
  gap: 0.25rem;
  color: var(--text-muted-color);
  background: transparent;
  border: none;
  outline: none;
}

.blog-card .blog-post-stats button:hover {
  color: white;
}

.blog-card .blog-post-stats button i {
  font-size: 1rem;
}

.blog-card-footer button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  background: var(--bg-color);
  color: white;
  height: 2.25rem;
  border-radius: 5px;
  padding: 0 0.75rem;
  border: 1px solid var(--btn-border-color);
  outline: none;
  text-transform: capitalize;
}

.blog-card-footer button:hover {
  background: rgba(255, 147, 30, 0.9);
}

.right-sidebar {
  width: 25rem;
  height: calc(100vh - 60px);
  overflow-y: auto;
  background: var(--box-blue);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem;
}

.right-sidebar .ak-logo {
  width: 100%;
  text-align: center;
  margin-top: 2rem;
}

.right-sidebar .ak-logo img {
  width: 200px;
  height: auto;
}

/* LOG CATCH */
.catch-box {
  margin: 5rem auto;
  max-width: 42rem;
  padding: 2rem 0;
  background: var(--box-blue);
  border: 1px solid var(--border-color);
  border-radius: 5px;
}

.catch-box .inner {
  color: var(--text-color);
}

.catch-box .top {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.catch-box .top .title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--orange-color);
}

.catch-box .top .title i {
  font-size: 3rem;
}

.catch-box .top .title div {
  letter-spacing: 0.025em;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: inherit;
  font-family: var(--bebas-font);
}

.catch-box .top .desc {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--text-muted-color);
}

.catch-box .bottom {
  padding: 1.5rem;
  padding-top: 0;
}

.catch-box .bottom .form-location label {
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 500;
  color: var(--text-muted-color);
}

.catch-box .bottom .form-location .inp {
  display: flex;
  height: 2.5rem;
  width: 100%;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  background: var(--bg-color);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-top: 0.5rem;
  color: white;
}

.catch-box .bottom .text-info {
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-top: 0.5rem;
  color: var(--text-muted-color);
}

.catch-box .bottom .form-weight-and-bait {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.catch-box .bottom .weight label {
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 500;
  color: var(--text-muted-color);
}

.catch-box .bottom .weight .inp {
  display: flex;
  height: 2.5rem;
  width: 100%;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  background: var(--bg-color);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-top: 0.5rem;
  color: white;
}

.catch-box .bottom .bait label {
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 500;
  color: var(--text-muted-color);
}

.catch-box .bottom .bait .inp {
  display: flex;
  height: 2.5rem;
  width: 100%;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  background: var(--bg-color);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-top: 0.5rem;
  color: white;
}

.catch-box .bottom .form-rig-used {
  margin-top: 2rem;
}

.catch-box .bottom .form-rig-used label {
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 500;
  color: var(--text-muted-color);
}

.catch-box .bottom .form-rig-used .inp {
  display: flex;
  height: 2.5rem;
  width: 100%;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  background: var(--bg-color);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-top: 0.5rem;
  color: white;
}

.catch-box .bottom .form-notes {
  margin-top: 2rem;
}

.catch-box .bottom .form-notes label {
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 500;
  color: var(--text-muted-color);
}

.catch-box .bottom .form-notes .notes-ta {
  display: flex;
  height: 80px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  background: var(--bg-color);
  padding: 0.5rem 0.75rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  resize: none;
  color: white;
  font-family: var(--lato-font);
}

.catch-box .bottom .form-photo {
  margin-top: 2rem;
}

.catch-box .bottom .form-photo label {
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 500;
  color: var(--text-muted-color);
}

.catch-box .bottom .photo-info {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.5rem;
}

.catch-box .bottom .photo-info label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 10rem;
  border: 2px dashed var(--border-color);
  border-radius: 5px;
  cursor: pointer;
  background: var(--bg-color);
}

.catch-box .bottom .photo-info .upload-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 0 1.5rem;
}

.catch-box .bottom .photo-info i {
  font-size: 2.5rem;
  color: var(--text-muted-color);
}

.catch-box .bottom .photo-info .title-box {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--text-muted-color);
  margin: 0.5rem 0;
}

.catch-box .bottom .photo-info .title {
  font-weight: 600;
  color: var(--orange-color);
}

.catch-box .bottom .photo-info .tagline {
  font-size: 0.75rem;
  line-height: 1rem;
  color: var(--text-muted-color);
}

.catch-box .bottom .form-photo .inp {
  margin-top: 0.25rem;
  height: 2.5rem;
  width: 100%;
  border-radius: 5px;
  border: 1px sold var(--border-color);
  background: var(--bg-color);
  padding: 0.5rem 0.75rem;
  display: none;
}

.catch-box .bottom .form-photo .photo-tagline {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--text-muted-color);
  margin: 0.5rem 0;
}

.catch-box .bottom .form-photo button i {
  margin-right: 0.5rem;
  font-size: 1rem;
}

.catch-box .bottom button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  background: var(--orange-color);
  color: white;
  height: 2.5rem;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  border: none;
  outline: none;
  text-transform: capitalize;
  margin-top: 2rem;
}

.catch-box .bottom button:hover {
  background: rgba(255, 147, 30, 0.9);
}

/* RIG LIBRARY */
.rig-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.rig-grid .rig-card {
  border: 1px solid var(--border-color);
  background: var(--box-blue);
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 5px;
}

.rig-grid .rig-image {
  position: relative;
  width: 100%;
  /* height: 100%; */
}

.rig-image img {
  width: 100%;
  height: auto;
  max-height: 18rem;
  object-fit: cover;
}

/* .rig-grid .rig-image div {
  background: var(--text-color);
  width: 100%;
  height: 100%;
} */

.rig-card .rig-card-header {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.rig-card .rig-title {
  letter-spacing: -0.025em;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 500;
  color: var(--orange-color);
  text-transform: capitalize;
}

.rig-card .rig-desc {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--text-muted-color);
  height: 4rem;
  overflow: hidden;
  margin-top: 0.5rem;
}

.rig-card .rig-card-content {
  padding: 1rem;
  flex-grow: 1;
}

.rig-card .rig-card-content h4 {
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: capitalize;
  color: var(--text-color);
}

.rig-card .rig-card-content ul {
  list-style: disc;
  list-style-position: inside;
  color: var(--text-muted-color);
}

.rig-card .rig-card-content ul li {
  margin-bottom: 0.3rem;
  font-size: 0.75rem;
  line-height: 1rem;
}

.rig-card .rig-card-footer {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-top: 1px solid var(--border-color);
}

.rig-card .rig-card-footer button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  background: var(--bg-color);
  color: white;
  height: 2.5rem;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  border: 1px solid var(--btn-border-color);
  outline: none;
  text-transform: capitalize;
}

.rig-card .rig-card-footer button:hover {
  background: rgba(255, 147, 30, 0.9);
}

.rig-card .rig-card-footer button i {
  font-size: 1rem;
}

.rig-card .catch-img {
  position: relative;
  height: auto;
  padding: 20px;
}

.rig-card .catch-img img {
  max-width: 100%;
  border-radius: 6px;
}

.latest-catches-cta {
  margin-top: 40px;
  padding: 20px;
  background: var(--bg-color);
  border-radius: 10px;
  text-align: center;
}

.cta-button {
  display: inline-block;
  background-color: #2b7a78;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

/* AI RIG TOOL */
.ai-rig-box {
  margin: 5rem auto;
  max-width: 42rem;
  padding: 2rem 0;
  background: var(--box-blue);
  border: 1px solid var(--border-color);
  border-radius: 5px;
}

.ai-rig-box .inner {
  color: var(--text-color);
}

.ai-rig-box .top {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.ai-rig-box .top .title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--orange-color);
}

.ai-rig-box .top .title i {
  font-size: 3rem;
}

.ai-rig-box .top .title div {
  letter-spacing: 0.025em;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: inherit;
  font-family: var(--bebas-font);
}

.ai-rig-box .top .desc {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--text-muted-color);
}

.ai-rig-box .bottom {
  padding: 1.5rem;
  padding-top: 0;
}

.ai-rig-box .bottom .conditions {
  margin-bottom: 2rem;
}

.ai-rig-box .bottom .conditions label {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
}

.ai-rig-box .bottom .ta {
  display: flex;
  min-height: 80px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  background: var(--bg-color);
  padding: 0.5rem 0.75rem;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  resize: vertical;
  color: white;
  font-family: var(--lato-font);
}

.ai-rig-box .bottom .ta::placeholder {
  color: var(--text-muted-color);
}

.ai-rig-box .bottom .text-info {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--text-muted-color);
}

.ai-rig-box .bottom .weight {
  margin-bottom: 2rem;
}

.ai-rig-box .bottom .weight label {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
}

.ai-rig-box .bottom .inp {
  display: flex;
  height: 2.5rem;
  width: 100%;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  background: var(--bg-color);
  padding: 0.5rem 0.75rem;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: white;
}

.ai-rig-box .bottom button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  background: var(--orange-color);
  color: white;
  height: 2.5rem;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  border: none;
  outline: none;
  text-transform: capitalize;
}

.ai-rig-box .bottom .email {
  margin-bottom: 2rem;
}

.ai-rig-box .bottom button:hover {
  background: rgba(255, 147, 30, 0.9);
}

.ai-rig-box .bottom button i {
  font-size: 1rem;
}

#ai-response.hidden {
  display: none;
}
#ai-response.show {
  display: block;
  margin-top: 20px;
  padding: 16px;
  background: var(--bg-color);
  color: white;
  border-radius: 5px;
  border: 1 px solid var(--border-color);
  border-left: 4px solid #5dcf5d;
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* .ai-result-box {
  margin-top: 20px;
  padding: 15px;
  background: var(--bg-color);
  color: white;
  border-left: 4px solid #4caf50;
  font-family: sans-serif;
} */

/* Hide the response box by default
.hidden {
  display: none;
}

.ai-response {
  margin-top: 20px;
  padding: 15px;
  background: #1f1f1f;
  border-left: 4px solid #5dcf5d;
  color: #fff;
  border-radius: 6px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.ai-response.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Optional loading animation
.loader {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #fff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.6s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#thinking-dots::after {
  content: '';
  animation: dots 1.2s steps(3, end) infinite;
}

@keyframes dots {
  0% {
    content: '';
  }
  33% {
    content: '.';
  }
  66% {
    content: '..';
  }
  100% {
    content: '...';
  }
}*/

/* EVENTS */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.events-grid .events-card {
  border: 1px solid var(--border-color);
  background: var(--box-blue);
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 5px;
}

.events-grid .events-image {
  position: relative;
  width: 100%;
  height: 18rem;
}

.events-grid .events-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events-grid .events-image div {
  background: var(--text-color);
  width: 100%;
  height: 100%;
}

.events-card .events-card-header {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.events-card .events-title {
  letter-spacing: -0.025em;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 500;
  color: var(--orange-color);
  text-transform: capitalize;
}

.events-card .events-card-content {
  padding: 1rem;
  flex-grow: 1;
}

.events-card .events-date {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--text-muted-color);
}

.events-card .events-date i {
  margin-right: 0.5rem;
  font-size: 1rem;
  color: var(--text-aqua-color);
}

.events-card .events-location {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin: 0.5rem 0;
  color: var(--text-muted-color);
  text-transform: capitalize;
}

.events-card .events-location i {
  margin-right: 0.5rem;
  font-size: 1rem;
  color: var(--text-aqua-color);
}

.events-card .events-desc {
  padding-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--text-color);
}

.events-card .events-card-footer {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-top: 1px solid var(--border-color);
}

.events-card .events-card-footer button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  background: var(--orange-color);
  color: white;
  height: 2.5rem;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  border: none;
  outline: none;
  text-transform: capitalize;
}

.events-card .events-card-footer button:hover {
  background: rgba(255, 147, 30, 0.9);
}

.events-card .events-card-footer button i {
  font-size: 1rem;
}

/* GEAR REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.reviews-grid .reviews-card {
  border: 1px solid var(--border-color);
  background: var(--box-blue);
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 5px;
}

.reviews-grid .reviews-image {
  position: relative;
  width: 100%;
  /* height: 100%; */
}

.reviews-grid .reviews-image img {
  width: 100%;
  height: auto;
  max-height: 18rem;
  object-fit: cover;
}

.reviews-grid .reviews-image div {
  background: var(--text-color);
  width: 100%;
  height: 100%;
}

.reviews-card .reviews-card-header {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.reviews-card .reviews-title {
  letter-spacing: -0.025em;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 500;
  color: var(--orange-color);
  text-transform: capitalize;
}

.reviews-card .reviews-star-rating {
  display: flex;
  align-items: center;
  padding: 0 1rem;
}

.reviews-card .reviews-star-rating i {
  font-size: 1.25rem;
}

.reviews-card .reviews-star-rating .filled {
  color: var(--text-aqua-color);
}

.reviews-card .reviews-star-rating .not-filled {
  color: var(--text-muted-color);
}

.reviews-card .reviews-card-content {
  padding: 1rem;
  flex-grow: 1;
}

.reviews-card .reviews-desc {
  padding-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--text-color);
}

.reviews-card .reviews-card-footer {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-top: 1px solid var(--border-color);
}

.reviews-card .reviews-card-footer button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  background: var(--orange-color);
  color: white;
  height: 2.5rem;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  border: none;
  outline: none;
  text-transform: capitalize;
}

.reviews-card .reviews-card-footer button:hover {
  background: rgba(255, 147, 30, 0.9);
}

.reviews-card .reviews-card-footer button i {
  font-size: 1rem;
}

/* FORUM */
.cat-box {
  border: 1px solid var(--border-color);
  background: var(--box-blue);
  color: var(--text-color);
  border-radius: 5px;
  margin-bottom: 2rem;
}

.cat-box .inner {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.cat-box .elements {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cat-box .left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cat-box .left i {
  font-size: 2rem;
  color: var(--text-aqua-color);
}

/* .cat-box .left a {
  color: var(--orange-color);
} */

.cat-box .left .forum-title {
  letter-spacing: -0.025em;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  color: var(--orange-color);
  text-transform: capitalize;
}

.cat-box .left .forum-tagline {
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-top: 0.25rem;
  color: var(--text-muted-color);
}

.cat-box .right {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--text-muted-color);
  flex-shrink: 0;
}

.cat-box .right p {
  text-align: center;
}

.cat-box .right .count {
  font-weight: 500;
  color: var(--text-color);
}

.cat-box .right button {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  border-radius: 5px;
  height: 2.25rem;
  padding: 0 0.75rem;
  gap: 0.25rem;
  color: var(--text-muted-color);
  background: transparent;
  border: none;
  outline: none;
}

.cat-box .right button:hover {
  color: white;
  background: rgba(255, 147, 30, 0.9);
}

.topics_box {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  background: var(--box-blue);
  border: 1px solid var(--border-color);
}

.topics_box .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted-color);
  margin: 0;
}

.topics_box .breadcrumbs ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.topics_box .breadcrumbs ul li {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.topics_box .breadcrumbs ul li i {
  font-size: 1.3rem;
  color: var(--text-muted-color);
}

.topics_box .breadcrumbs ul li i.seperator {
  font-size: 1.25rem;
  color: var(--text-muted-color);
}

.topics_box .breadcrumbs ul li a:first-child:hover {
  text-decoration: none;
}

.topics_box .breadcrumbs ul li a {
  color: var(--text-muted-color);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.75rem;
  display: flex;
}

.topics_box .breadcrumbs ul li a:hover {
  text-decoration: underline;
}

.topics_box .breadcrumbs ul li span {
  color: var(--text-muted-color);
  font-size: 0.75rem;
  display: flex;
}

.topics_box .topic-list-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: var(--bg-color);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border: 1px solid var(--btn-border-color);
  padding: 0.8rem 0;
  text-transform: uppercase;
  font-weight: 600;
}

.topics_box .header-topics {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1rem 0 3rem;
}

.topics_box .header-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 15%;
  padding: 0 1rem;
}

.topics_box .header-lastpost {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 20%;
  padding: 0 1rem;
}

.topics_box .topic {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.5rem;
}

.topics_box .topic .left {
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border-color);
}

.topics_box .topic .left img {
  width: 60px;
  height: 60px;
}

.topics_box .topic .left .ucolor {
  color: var(--orange-color);
}

.topics_box .topic .left .uxp {
  color: var(--text-muted-color);
  font-size: 0.75rem;
}

.topics_box .topic .left .social-share {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

.topics_box .topic .left .social-share button {
  padding: 4px;
  min-width: 85px;
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 600;
  color: white;
  border-radius: 5px;
  border: none;
  outline: none;
}

.topics_box .topic .left .social-share button i {
  margin-right: 0.3rem;
}

.topics_box .topic .left .social-share button.fb {
  background: #4267b2;
}

.topics_box .topic .left .social-share button.fb:hover {
  background: #365899;
}

.topics_box .topic .left .social-share button.tw {
  background: #1b95e0;
}

.topics_box .topic .left .social-share button.tw:hover {
  background: #0c7abf;
}

/* .topics_box .topic .left .u-status span {
  display: inline-block;
  border-radius: 50%;
  background: red;
  border: 1px solid white;
  width: 14px;
  height: 14px;
} */

.status-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 8px;
  background-color: red; /* fallback */
}

.status-dot.online {
  background-color: #28a745; /* green */
}

.status-dot.offline {
  background-color: #dc3545; /* red */
}

.topics_box .topic .right {
}

.reply-toggle-btn {
  padding: 10px 20px;
  background-color: var(--orange-color);
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 200px;
}

.reply-toggle-btn:hover {
  background-color: rgba(255, 147, 30, 0.9);
}

#reply-form-container textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  resize: vertical;
  margin-bottom: 10px;
  font-family: var(--lato-font);
}

#reply-form-container button {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
}

.replies {
  /* margin-top: 30px;
  padding: 15px;
  border-top: 1px solid #ccc; */
}

.reply {
  margin-bottom: 20px;
  padding: 10px;
  background: #f9f9f9;
  border-radius: 6px;
}

form textarea {
  width: 100%;
  padding: 10px;
  resize: vertical;
  margin-bottom: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

form button {
  padding: 10px 20px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 4px;
}

.topic-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: var(--bg-color);
  border: 1px solid var(--btn-border-color);
  border-top: none;
  padding: 0.8rem 0;
}

.topic-item .topic-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.topic-item .topic-icon i {
  font-size: 2rem;
  color: var(--text-aqua-color);
  padding: 0 0.3rem;
}

.topic-item .topic-title {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 0.5rem;
}

.topic-item .topic-title div:first-child {
  color: var(--orange-color);
  font-size: medium;
}

.topic-item .topic-title div:last-child {
  font-size: small;
}

.topic-item .topic-title div:last-child span {
  color: var(--orange-color);
}

.topic-item .topic-title a {
  text-decoration: none;
  color: var(--orange-color);
}

.topic-item .topic-title a:hover {
  color: white;
}

.topic-item .topic-stats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 15%;
  padding: 0 1rem;
}

.topic-item .topic-user {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 20%;
  padding: 0 1rem;
}

.topic-item .topic-user img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
}

.topic-item .topic-user .user-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.topic-item .topic-user div:last-child {
  display: flex;
  flex-direction: column;
}

.topic-item .topic-user div:last-child span {
  color: var(--orange-color);
}

.topic-item .topic-user div:last-child div:last-child {
  color: var(--text-muted-color);
  font-size: 0.75rem;
  margin-top: 0.2rem;
}

.topic-item .topic-user div span a {
  color: var(--orange-color);
}

.new-topic-wrapper {
  display: flex;
  justify-content: flex-end;
}

.new-topic-button {
  background-color: #3b82f6;
  color: white;
  border: none;
  padding: 6px 16px;
  font-size: 16px;
  border-radius: 6px;
  margin-bottom: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.new-topic-form .form-group {
  margin-bottom: 12px;
}

.new-topic-form input,
.new-topic-form textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.submit-topic-button {
  background-color: #16a34a;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}

.cancel-topic-button {
  background-color: #dc2626;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}
