/* Global Styles */
:root {
  --primary-color: #0D9263;
  --dark-bg: #1a1a1a;
  --text-light: #ffffff;
}
.header{
  border-bottom: 0.5px solid #FFFFFF;
}

.navbar-brand{
  padding: unset;
    border-radius: unset;
    margin-top: unset;
}

.forum-section{
    margin-top: 100px;
}

.forum-section .forum-header {
  text-align: center;
}

.forum-section .forum-header h2 {
  font-size: 40px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 55px;
}

.forum-section .forum-header h2 span {
  color: var(--primary-color);
}

.forum-section .forum-header p {
  font-size: 16px;
  color: #fff;
  padding-top: 12px;
  margin-bottom: 60px;
}

.forum-section .search-row{
    display: flex;
    justify-content: space-between;
    gap: 70px;
    margin-top: 60px;
    margin-bottom: 60px;
}
.forum-section .search-row .col1{
    width: 67%;
}

.forum-section .search-row .col2{
    width: 30%;
}

.forum-section .search-box { 
  margin: 0 auto;
  position: relative;
}

.forum-section .search-box input {
  width: 100%;
  padding: 12px 45px 12px 15px;  
  background: transparent;
  color: #fff;
  border-radius: 44px;
  border: 1px solid #FFF;
  height: 55px;
}

.forum-section .search-box img {
  position: absolute;
  right: 15px;
  top: 16px;
}
.forum-section .search-row button{
  min-width: 336px;
  height: 55px;
  border-radius: 54px;
  background: linear-gradient(138deg, rgba(205, 198, 81, 0.64) 9.37%, #1D865C 95.17%);
  backdrop-filter: blur(4.47963809967041px);
}
.forum-section .search-row button img{
   padding-right: 8px;
}

.forum-section .tabs {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 60px;
}

.forum-section .tabs button { 
  border: none;
  color: #fff;
  transition: 0.3s;
  width: 100%;
  border-radius: 40px;
background: #363636;
padding: 5px 18px;
gap: 12px;
height: 53px;
}
 
.forum-section .tabs button:hover {
  background: #2ecc71;
  color: #000;
}

.forum-section .forum-container {
  display: flex;
  gap: 115px;
  margin-top: 60px;
}

.forum-section .forum-content {
  flex: 3;
}

.forum-section .forum-card {
  padding: 42px 32px;
  margin-bottom: 28px;
  border-radius: 8px;
  border: 1px solid var(--main, #0D9263);
}

.forum-section .forum-card h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.forum-section .forum-card p {
  font-size: 14px;
  color: #aaa;
}

.forum-section .actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.forum-section .actions .btn-primary {
  display: flex; 
height: 39px;
padding: 5px 18px;
justify-content: center;
align-items: center;
gap: 12px; 
border-radius: 40px;
background: #363636;
font-size: 12px;
font-weight: 500;
color: #FFFFFF;
border: none;
}

.forum-section .vote-up-btn, .forum-section .vote-down-btn {
  border: none; 
  background: #2a2a2a;
  color: #fff; 
  transition: 0.3s;
  height: 40px;
  width: 50px;
}

.forum-section .votes{
  display: flex;
  gap: 1px;
}
.forum-section .votes .vote-up-btn{
  border-radius: 50% 0 0 50%;
  border-right: 1px solid #fff;
}

.forum-section .votes .vote-down-btn{
  border-radius: 0 50% 50% 0;
}

.forum-section .vote-up-btn:hover, .forum-section .vote-down-btn:hover {
  background: #2ecc71;
  color: #000;
}

.forum-section .sidebar {
  flex: 1; 
  padding: 24px; 
  border-radius: 8px;
  border: 1px solid var(--White, #FFF);
  max-width: 280px;
}

.forum-section .sidebar h5 { 
  font-weight: 500;
}

.forum-section .top-questions {
  list-style: none;
  padding: 0;
  margin: 0;
}

.forum-section .top-questions li { 
  font-size: 14px;
  color: #FFFFFF;
  display: flex;
  gap: 18px;
  align-items: center;
}

.forum-section .top-questions li div:first-child {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 24px;
}

.forum-section .top-questions li div:last-child {
  padding-bottom: 12px;
  border-bottom: 0.5px solid #C3C3C3;
  padding-top: 16px;
}