/* Minimal responsive styles */
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f6f8;
  color: #111;
  margin: 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width:768px) {
  .container {
    padding: 8px;
  }
}

img, table, .content, .sidebar {
  max-width: 100%;
  overflow-wrap: break-word;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

/* Header (preserve your nav menu) */
.site-header {
  background:#fff;
  border-bottom:1px solid #ddd;
  padding:10px 15px;
  position:sticky;
  top:0;
  z-index:1000;
}
.header-container {
  display:flex;
  justify-content:space-between;
  align-items:center;
  max-width:1200px;
  margin:0 auto;
}

/* Logo */
.brand {
  display:flex;
  align-items:center;
  font-weight:bold;
  font-size:1.2rem;
  text-decoration:none;
  color:#333;
}
.site-logo {
  height:70px;
  width:auto;
  margin-right:10px;
}

/* Navigation */
.main-nav {
  display:flex;
  gap:15px;
}
.main-nav a {
  text-decoration:none;
  color:#333;
  padding:8px 14px;
  font-weight:500;
  border-radius:6px;
  transition:all 0.3s ease;
}
.main-nav a:hover {
  background:#007BFF;
  color:#fff;
  transform:translateY(-2px);
  box-shadow:0 4px 6px rgba(0,0,0,0.1);
}

/* Hamburger */
.nav-toggle {
  display:none;
  font-size:28px;
  background:none;
  border:none;
  cursor:pointer;
}

/* Mobile Responsive Navigation */
@media (max-width:768px){
  .nav-toggle {
    display:block;
    z-index:1100;
  }
  .main-nav {
    position:fixed;
    top:0;
    right:-100%;
    height:100%;
    width:240px;
    background:#fff;
    flex-direction:column;
    padding-top:70px;
    transition:right 0.3s ease-in-out;
    box-shadow:-4px 0 10px rgba(0,0,0,0.1);
  }
  .main-nav.open {
    right:0;
  }
  .main-nav a {
    padding:15px 20px;
    border-bottom:1px solid #eee;
    text-align:left;
    font-size:16px;
  }
  .main-nav a:hover {
    background:#007BFF;
    color:#fff;
    transform:none;
    box-shadow:none;
  }
}

/* Content */
.content {
  background:#fff;
  padding:14px;
  border-radius:6px;
}

/* Tables */
.table {
  width:100%;
  border-collapse:collapse;
}
.table th, .table td {
  padding:8px;
  border-bottom:1px solid #eee;
  text-align:left;
}

/* Table Responsive */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid #2196f3;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  background: linear-gradient(145deg, #ffffff, #f3faff);
}

/* Sidebar layout only */
.sidebar {
  padding: 15px;
}

@media (max-width:992px){
  .wrapper {
    flex-direction: column;
    align-items: center;
  }
  .sidebar {
    display: block;
    width: 100%;
    max-width: 400px;
    margin-top: 15px;
    border-top: 1px solid #ddd;
  }
  .content {
    width: 100%;
    max-width: 100%;
  }
}

/* Breadcrumbs */
.breadcrumbs-center {
  text-align: center;
  margin: 15px 0;
}
.breadcrumb {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  background: #f9f9f9;
  padding: 8px 14px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.breadcrumb a {
  color: #0073e6;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.breadcrumb a:hover {
  color: #005bb5;
  text-decoration: underline;
}
.breadcrumb a + a::before,
.breadcrumb a + span::before {
  content: "/";
  margin: 0 6px;
  color: #666;
}
.breadcrumb span {
  color: #333;
  font-weight: 600;
}


/* 3D Table Styles */
.table-3d {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
}

.table-3d thead th {
    border: 1px solid #2196f3;
    padding: 8px;
    background: #2196f3;
    color: #fff;
    box-shadow: inset 0 -2px 5px rgba(0,0,0,0.2);
    border-radius: 4px;
    text-align: left;
}

.table-3d tbody td {
    border: 1px solid #2196f3;
    padding: 8px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
    border-radius: 4px;
}

.table-3d tbody td a {
    text-decoration: none;
    color: #2196f3;
    display: block;
}

/* Hover effect on rows */
.table-3d tbody tr:hover td {
    background: #e3f2fd;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.15);
}

/* Responsive horizontal scroll */
.table-3d-wrapper {
    overflow-x: auto;
}


/* Pagination Container Home Page */
.pagination {
    margin: 15px 0;
    text-align: center;
}

/* Pagination Links */
.pagination a {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 3px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: all 0.2s;
}

/* Hover Effect */
.pagination a:hover {
    background: #f0f0f0;
}

/* Active Page */
.pagination a.active {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
    font-weight: bold;
}

/* Previous / Next buttons optional styling */
.pagination a.prev,
.pagination a.next {
    font-weight: bold;
}

/* Pagination flex container  for Location pages*/
.pagination-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin: 15px 0;
    text-align: center;
}

/* Break row after every 8 links */
.pagination-break {
    flex-basis: 100%;
    height: 0;
}



/* Footer */
body .site-footer {
  background: linear-gradient(135deg, #1f1f1f, #2c2c2c);
  color: #f1f1f1;
  padding: 40px 20px 20px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  text-align: center;
  font-family: 'Arial', sans-serif;
}
body .site-footer .footer-social {
  margin-bottom: 20px;
}
body .site-footer .footer-social a {
  margin: 0 10px;
  display: inline-block;
  transition: all 0.3s ease;
}
body .site-footer .footer-social a:hover .social-icon {
  transform: scale(1.2);
}
body .site-footer .footer-social .social-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.3s ease;
  filter: brightness(0) invert(1);
}
body .site-footer .footer-nav {
  margin-bottom: 20px;
}
body .site-footer .footer-nav .nav-btn {
  display: inline-block;
  margin: 5px 8px;
  padding: 10px 20px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #f1f1f1;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
body .site-footer .footer-nav .nav-btn:hover {
  background-color: #ffd700;
  color: #1f1f1f;
}
body .site-footer .footer-privacy a {
  color: #f1f1f1;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
}
body .site-footer .footer-privacy a:hover {
  color: #ffd700;
}
body .site-footer .footer-bottom {
  font-weight: 500;
  margin-bottom: 10px;
}
body .site-footer .disclaimer {
  font-size: 0.85em;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
  color: #cccccc;
}

/* Small screen footer adjustments */
@media (max-width: 576px) {
  body .site-footer .footer-nav .nav-btn {
    display: block;
    margin: 6px auto;
  }
  body .site-footer .footer-privacy {
    margin-top: 10px;
  }
  body .site-footer .footer-social a {
    margin: 5px;
  }
}



/* Render Sidebar Styles */
.sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.sidebar:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.sidebar h3 {
    font-size: 20px;
    color: #0073e6;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
    font-weight: 600;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar li {
    margin-bottom: 10px;
}

.sidebar a {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.sidebar a:hover,
.sidebar a.active {
    background: #0073e6;
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .sidebar {
        width: 100%;
        max-width: 100%;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .sidebar {
        padding: 15px;
    }

    .sidebar h3 {
        font-size: 18px;
    }

    .sidebar a {
        font-size: 15px;
        padding: 8px 10px;
    }
}



/* ===============================
   Go To Top Button Styles Button CSS
   =============================== */
#goTopBtn {
  display: none;              /* Hidden by default */
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  background: linear-gradient(135deg, #0073e6, #00aaff);
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

#goTopBtn svg {
  width: 24px;
  height: 24px;
  pointer-events: none;
}

#goTopBtn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  #goTopBtn {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
  #goTopBtn svg {
    width: 20px;
    height: 20px;
  }
}

