/* ---- Forum Page Styling ---- */

.forum-container {
  max-width: 1100px;
}

/* Headings */
.forum-heading {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    text-align: center; /* Center text */
    width: 100%; /* Take full width of the container */
    padding: 20px 0; /* Optional padding for spacing */
    text-transform: uppercase;
    color: #4096d9; /* Change to your desired color */
    font-size: 25px;
    text-decoration: underline;
}

/* List Groups (Agenda & Exhibitor) */
.forum-list-item {
  font-size: 1.15rem;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  transition: all 0.25s ease-in-out;
}

.forum-list-item:hover {
  background-color: #f8f9fa;
  transform: scale(1.01);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.forum-doc-title {
  font-weight: 600;
  color: #343a40;
  font-size: 1.8rem;

}

/* ---- Enhanced Forum Buttons ---- */
.forum-btn {
  font-size: 1.5rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 0.6rem 1.5rem;
  transition: all 0.3s ease;
  color: #fff !important;
  background: linear-gradient(135deg, #0d6efd, #007bff);
  box-shadow: 0 3px 8px rgba(13, 110, 253, 0.3);
  text-transform: capitalize;
}

.forum-btn.btn-success {
  background: linear-gradient(135deg, #28a745, #20c997);
  box-shadow: 0 3px 8px rgba(40, 167, 69, 0.3);
}

.forum-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(13, 110, 253, 0.45);
  background: linear-gradient(135deg, #0056d2, #0a58ca);
}

.forum-btn.btn-success:hover {
  background: linear-gradient(135deg, #1e9e58, #2ac772);
  box-shadow: 0 6px 18px rgba(32, 201, 151, 0.45);
}

.forum-btn:active {
  transform: scale(0.98);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Empty State */
.forum-empty-item,
.forum-empty-text {
  font-size: 1.2rem;
  text-align: center;
  padding: 2rem 0;
  color: #6c757d;
}

/* Floor Plan Cards */
.forum-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.25s ease-in-out;
}

.forum-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.forum-card-img {
  height: auto;
  object-fit: cover;
}

.forum-card-body {
  background: #ffffff;
  padding: 1.25rem;
}

.forum-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d6efd;
  text-align: center;
  margin-top: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .forum-heading {
    font-size: 1.6rem;
  }

  .forum-card-img {
    height: 200px;
  }

  .forum-card-title {
    font-size: 1.25rem;
  }

  .forum-list-item {
    font-size: 1rem;
  }
}
