/* Main Body Background */
body {
  background-color: #fbedd1;
  font-family: "Arial", sans-serif;
  color: #333;
  font-size: 14px;
}

/* Main Container to mimic the 'paper' look of the original table */
.main-wrapper {
  background-color: #fefbf5;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  min-height: 100vh;
  padding-bottom: 20px;
}

/* Links */
a {
  color: #c36241;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #a0492d;
  text-decoration: underline;
}

/* Typography from original */
.text-brand-orange {
  color: #c36241;
}

.font-12 {
  font-size: 12px;
}

.font-14 {
  font-size: 14px;
}

/* Header */
.header-logo {
  max-height: 150px;
}

/* Horizontal Scroll / Ticker */
.news-ticker-container {
  background: #fff;
  border: 1px solid #eee;
  padding: 10px;
  height: 300px;
  /* Fixed height for vertical scroll mimic or use marquee replacement */
  overflow-y: auto;
}

.news-item {
  /* margin-bottom: 1rem; */
  /* padding-bottom: 0.5rem; */
  /* border-bottom: 1px dashed #ccc; */
  font-size: 13px;
  display: inline-flex;
  /* Align icon and text */
  align-items: center;
}

/* CSS Marquee Animation */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  /* Start off-screen right */
  animation: scroll-left 200s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.marquee-link:hover {
  color: #c36241 !important;
  text-decoration: underline !important;
}

/* Sidebar Links */
.sidebar-link {
  display: block;
  padding: 8px 15px;
  border-bottom: 1px solid #eee;
  font-weight: bold;
  color: #c36241;
}

.sidebar-link:hover {
  background-color: #fbedd1;
  padding-left: 20px;
  /* Slide effect */
}

/* Navbar overrides */
.navbar-custom {
  background-color: #c36241;
}

.navbar-custom .nav-link {
  color: #fff !important;
}

.navbar-custom .nav-link:hover {
  color: #fbedd1 !important;
}

.home-styled-list {
  padding-left: 25px;
}

.home-styled-list li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.obj-styled-list {
  padding-left: 25px;
}

.obj-styled-list li {
  margin-bottom: 12px;
  line-height: 1.6;
}

a:hover {
  text-decoration: none;
  /*border-bottom-color: #4f46e5;*/
}

/******for pdf viewer***********/
.pdf-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

iframe {
  width: 100%;
  height: 600px;
  border: none;
}

.fallback {
  padding: 20px;
  text-align: center;
}

.fallback a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.fallback a:hover {
  text-decoration: underline;
}
