/* Add these styles to your existing style.css */

/* ===== FULL WIDTH LAYOUT ===== */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 30px 0;
  background: #f8f9fa;
  flex: 1;
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  padding: 0 15px;
}

/* ===== COLUMN LAYOUTS ===== */
.left-column {
  flex: 0 0 60%;
  max-width: 60%;
  padding: 0 15px;
}

.middle-column {
  flex: 0 0 20%;
  max-width: 20%;
  padding: 0 15px;
}

.right-column {
  flex: 0 0 20%;
  max-width: 20%;
  padding: 0 15px;
}

.two-column-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.main-content-column {
  flex: 0 0 75%;
  max-width: 75%;
  padding: 0 15px;
}

.sidebar-column {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 15px;
}

.full-page-content {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 15px;
}

/* ===== IMPROVED SIDEBAR MENU (Like index page) ===== */
.sidebar-panel {
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 25px;
  margin-bottom: 30px;
  animation: fadeIn 0.8s ease;
}

.sidebar-panel h3 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-gold);
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li {
  margin-bottom: 12px;
}

.sidebar-menu a {
  display: block;
  padding: 12px 15px;
  background: #f8f9fa;
  color: var(--primary-blue);
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 600;
  border-left: 4px solid transparent;
}

.sidebar-menu a:hover {
  background: #e9f6fb;
  padding-left: 20px;
  border-left: 4px solid var(--accent-gold);
  transform: translateX(5px);
}

.sidebar-menu a i {
  margin-right: 10px;
  color: var(--accent-gold);
  width: 20px;
  text-align: center;
}

/* ===== IMPROVED NEWS PANEL ===== */
.news-panel {
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 30px;
}

.news-panel h4 {
  background: linear-gradient(to right, var(--primary-blue), var(--secondary-blue));
  color: #fff;
  padding: 14px 16px;
  margin: 0;
  font-weight: 700;
  font-size: 1.1rem;
}

.news-content {
  padding: 20px;
  border-top: 3px solid var(--accent-gold);
}

.news-scroll {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 10px;
}

.news-scroll::-webkit-scrollbar {
  width: 6px;
}

.news-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.news-scroll::-webkit-scrollbar-thumb {
  background: var(--primary-blue);
  border-radius: 10px;
}

/* ===== IMPROVED MAIN CONTENT ===== */
.main-content {
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 30px;
  margin-bottom: 30px;
  animation: fadeIn 0.8s ease;
}

.main-content h2 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--accent-gold);
}

/* ===== IMPROVED HEADER STYLES ===== */
.top_banner .site-title {
  color: white !important;
  font-weight: 700 !important;
  font-size: 1.8rem !important;
  margin-bottom: 6px !important;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3) !important;
  letter-spacing: 0.5px !important;
  line-height: 1.2 !important;
}

.top_banner .site-subtext {
  color: rgba(255,255,255,0.95) !important;
  font-size: 0.9rem !important;
  line-height: 1.4 !important;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3) !important;
  display: block !important;
  margin-bottom: 2px !important;
}

/* ===== IMPROVED BUTTON STYLES ===== */
.btn-brand {
  background: var(--accent-gold) !important;
  color: #000 !important;
  border: none !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
  border-radius: 4px !important;
  transition: all 0.3s ease !important;
  font-size: 0.9rem !important;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2) !important;
}

.btn-brand:hover {
  background: #ffcc00 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 12px rgba(0,0,0,0.25) !important;
  color: #000 !important;
}

/* ===== FOOTER (Matching index page) ===== */
.agijm-footer-simple {
  background: linear-gradient(135deg, #0b1f2a 0%, #0b5394 100%);
  color: white;
  padding: 40px 0 30px;
  width: 100%;
  border-top: 4px solid var(--accent-gold);
}

.agijm-footer-simple .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.agijm-footer-simple .title {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--accent-gold);
}

.agijm-footer-simple .line {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 10px;
}

.agijm-footer-simple a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.agijm-footer-simple a:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}

.agijm-footer-simple .copyright {
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.8;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
}

/* ===== RESPONSIVE IMPROVEMENTS ===== */
@media (max-width: 1200px) {
  .site-logo {
    max-width: 220px !important;
  }
  
  .top_banner .site-title {
    font-size: 1.6rem !important;
  }
}

@media (max-width: 992px) {
  .top_banner .row.align-items-center > div {
    text-align: center !important;
    margin-bottom: 10px;
  }
  
  .site-logo {
    max-width: 200px !important;
    margin: 0 auto;
  }
  
  .top_banner .site-title {
    font-size: 1.4rem !important;
  }
  
  .top_banner .site-subtext {
    font-size: 0.85rem !important;
  }
  
  /* Stack columns on tablet */
  .left-column,
  .middle-column,
  .right-column,
  .main-content-column,
  .sidebar-column {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
  
  .full-page-content {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .agijm-footer-simple {
    padding: 30px 0 20px;
  }
  
  .sidebar-panel {
    padding: 20px;
  }
  
  .main-content {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .site-logo {
    max-width: 180px !important;
  }
  
  .top_banner .site-title {
    font-size: 1.2rem !important;
  }
  
  .main-content {
    padding: 20px 15px;
  }
  
  .sidebar-panel {
    padding: 20px 15px;
  }
  
  .agijm-footer-simple .title {
    font-size: 1.1rem;
  }
  
  .agijm-footer-simple .line {
    font-size: 0.85rem;
  }
}

/* ===== FIXES FOR EXISTING STYLES ===== */
/* Ensure header text uses our improved styles */
.header-text h3 {
  color:#fff !important;
  font-weight:700 !important;
  font-size: 1.8rem !important;
  margin-bottom: 6px !important;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3) !important;
  letter-spacing: 0.5px !important;
  line-height: 1.2 !important;
}

.header-text span {
  color: rgba(255,255,255,0.95) !important;
  font-size: 0.9rem !important;
  line-height: 1.4 !important;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3) !important;
  display: block !important;
  margin-bottom: 2px !important;
}

/* Ensure submit button uses btn-brand style */
.submit-article-btn {
  background: var(--accent-gold) !important;
  color: #000 !important;
  border: none !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
  border-radius: 4px !important;
  transition: all 0.3s ease !important;
  font-size: 0.9rem !important;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2) !important;
}

.submit-article-btn:hover {
  background: #ffcc00 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 12px rgba(0,0,0,0.25) !important;
  color: #000 !important;
}

/* Make sure page-wrap works with new layout */
.page-wrap {
  padding-top: 25px;
  animation: fadeIn 0.8s ease;
  width: 100%;
}

/* Update existing site-footer to match agijm-footer-simple */
.site-footer {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%) !important;
  color: white;
  padding: 40px 0 30px;
  border-top: 4px solid var(--accent-gold);
  width: 100%;
}

.site-footer a {
  color: var(--light-gold);
  transition: all 0.3s ease;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Ensure banner can anchor absolute elements */
.top_banner{
  position: relative; /* you already have this, keep it */
}

.top_banner .container{
  position: relative;
}

.top-right-actions{
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.top-action-btn{
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.55);
  color: #fff !important;
  padding: 7px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none !important;
  white-space: nowrap;
  text-align: center;
}

.top-action-btn:hover{
  background: rgba(255,255,255,0.28);
  border-color: rgba(255,255,255,0.8);
  color: #fff !important;
}

@media (max-width: 992px){
  .top-right-actions{
    position: static;
    margin: 8px auto 0;
    align-items: center;
  }
}

/* ===== NEW: TOP RIGHT BUTTONS ===== */
.top-buttons-container {
  margin-bottom: 10px;
  width: 100%;
}

.top-right-buttons {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.top-btn {
  display: block;
  background: rgba(255, 255, 255, 0.15);
  color: white !important;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

.top-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  color: white !important;
  transform: translateX(3px);
  text-decoration: none;
  border-color: rgba(255, 255, 255, 0.5);
}

.top-btn i {
  margin-right: 8px;
  font-size: 0.9em;
  width: 16px;
  text-align: center;
}

.btn-admin {
  background: linear-gradient(135deg, #0b5394 0%, #1c7dc9 100%);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-reviewer {
  background: linear-gradient(135deg, #e6b800 0%, #ffd700 100%);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-track {
  background: linear-gradient(135deg, #1c6ea4 0%, #2a8fd6 100%);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-admin:hover {
  background: linear-gradient(135deg, #0a4a84 0%, #166cb4 100%);
}

.btn-reviewer:hover {
  background: linear-gradient(135deg, #d4a600 0%, #f0c900 100%);
}

.btn-track:hover {
  background: linear-gradient(135deg, #165f8c 0%, #227bbf 100%);
}

/* Adjust header layout for buttons */
.header-right-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.issn-info, #clock {
  margin-bottom: 5px;
  text-align: right;
}

/* ===== RESPONSIVE UPDATES ===== */
@media (max-width: 1200px) {
  .top-btn {
    font-size: 0.75rem;
    padding: 7px 10px;
  }
  
  .top-btn i {
    margin-right: 6px;
  }
}

@media (max-width: 992px) {
  .top-right-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  
  .top-btn {
    width: auto;
    min-width: 120px;
    text-align: center;
    padding: 6px 8px;
  }
  
  .top-btn i {
    margin-right: 5px;
  }
}

@media (max-width: 768px) {
  .top-right-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .top-btn {
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .top-btn {
    font-size: 0.7rem;
    padding: 5px 8px;
  }
  
  .top-btn i {
    margin-right: 4px;
    font-size: 0.8em;
  }
}
/* For vertical stack layout */
.button-row {
  margin-bottom: 5px;
  width: 100%;
}

.top-right-buttons {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  margin-bottom: 10px;
}

.top-btn {
  display: block;
  background: rgba(255, 255, 255, 0.15);
  color: white !important;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

/* ===== VERTICAL BUTTONS LAYOUT ===== */
.vertical-buttons-container {
  width: 100%;
  margin-bottom: 12px;
}

.vertical-buttons-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.vertical-btn {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: white !important;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.vertical-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white !important;
  transform: translateX(3px);
  text-decoration: none;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.vertical-btn i {
  margin-right: 8px;
  font-size: 0.9em;
  width: 18px;
  text-align: center;
}

/* Button specific colors */
.btn-admin {
  background: linear-gradient(135deg, #0b5394 0%, #1a7dce 100%);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-reviewer {
  background: linear-gradient(135deg, #e6b800 0%, #ffcc00 100%);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-track {
  background: linear-gradient(135deg, #1c6ea4 0%, #2a8fd6 100%);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-admin:hover {
  background: linear-gradient(135deg, #09487f 0%, #166db7 100%);
}

.btn-reviewer:hover {
  background: linear-gradient(135deg, #d4a600 0%, #f2c200 100%);
}

.btn-track:hover {
  background: linear-gradient(135deg, #165f8c 0%, #237ec6 100%);
}

/* Header right info adjustments */
.header-right-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
}

.header-meta-info {
  margin-bottom: 10px;
  text-align: right;
  width: 100%;
}

.issn-info {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.9rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  margin-bottom: 5px;
}

.clock-display {
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.main-submit-btn {
  background: var(--accent-gold);
  color: #000;
  border: none;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  text-decoration: none;
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-top: 5px;
}

.main-submit-btn:hover {
  background: #ffcc00;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.25);
  color: #000;
}

.main-submit-btn i {
  margin-right: 6px;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1200px) {
  .vertical-btn {
    font-size: 0.75rem;
    padding: 7px 10px;
  }
  
  .vertical-btn i {
    margin-right: 6px;
  }
}

@media (max-width: 992px) {
  .vertical-buttons-group {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  
  .vertical-btn {
    flex: 1;
    min-width: 110px;
    justify-content: center;
    padding: 6px 8px;
  }
  
  .header-right-info {
    align-items: center;
    text-align: center;
  }
  
  .header-meta-info {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .vertical-buttons-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .vertical-btn {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .vertical-btn {
    font-size: 0.7rem;
    padding: 6px 8px;
  }
  
  .vertical-btn i {
    margin-right: 5px;
    font-size: 0.8em;
  }
  
  .issn-info {
    font-size: 0.85rem;
  }
  
  .clock-display {
    font-size: 0.75rem;
  }
  
  .main-submit-btn {
    font-size: 0.85rem;
    padding: 7px 12px;
  }
}
/* ===== TOP HEADER STRIP ===== */
.top-header-strip {
  background: linear-gradient(135deg, #0b1f2a 0%, #0b5394 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 0;
  width: 100%;
}

.top-buttons-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.top-strip-btn {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  color: white !important;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  white-space: nowrap;
}

.top-strip-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  color: white !important;
  transform: translateY(-1px);
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.top-strip-btn i {
  margin-right: 6px;
  font-size: 0.9em;
}

/* Button specific colors in top strip */
.admin-btn {
  background: linear-gradient(135deg, #0b5394 0%, #1a7dce 100%);
}

.reviewer-btn {
  background: linear-gradient(135deg, #e6b800 0%, #ffcc00 100%);
}

.track-btn {
  background: linear-gradient(135deg, #1c6ea4 0%, #2a8fd6 100%);
}

.submit-btn {
  background: linear-gradient(135deg, #28a745 0%, #34ce57 100%);
  font-weight: 700;
}

.admin-btn:hover {
  background: linear-gradient(135deg, #09487f 0%, #166db7 100%);
}

.reviewer-btn:hover {
  background: linear-gradient(135deg, #d4a600 0%, #f2c200 100%);
}

.track-btn:hover {
  background: linear-gradient(135deg, #165f8c 0%, #237ec6 100%);
}

.submit-btn:hover {
  background: linear-gradient(135deg, #218838 0%, #2db44d 100%);
}

/* Adjust main banner to account for top strip */
.top_banner {
  background: linear-gradient(135deg, #0b1f2a 0%, #0b5394 100%);
  padding: 12px 0;
  border-bottom: 4px solid var(--accent-gold);
  width: 100%;
  position: relative;
}

/* Remove Submit Article button from header-right-info */
.header-right-info .submit-article-btn {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .top-strip-btn {
    font-size: 0.8rem;
    padding: 5px 12px;
  }
}

@media (max-width: 992px) {
  .top-buttons-row {
    justify-content: center;
    gap: 8px;
  }
  
  .top-strip-btn {
    font-size: 0.75rem;
    padding: 4px 10px;
  }
}

@media (max-width: 768px) {
  .top-header-strip {
    padding: 6px 0;
  }
  
  .top-buttons-row {
    gap: 6px;
  }
  
  .top-strip-btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
    justify-content: center;
    font-size: 0.7rem;
    padding: 4px 8px;
  }
  
  .top-strip-btn i {
    margin-right: 4px;
    font-size: 0.8em;
  }
}

@media (max-width: 576px) {
  .top-buttons-row {
    flex-wrap: wrap;
  }
  
  .top-strip-btn {
    min-width: 100px;
    font-size: 0.65rem;
    padding: 3px 6px;
  }
}
/* ===== TOP HEADER STRIP - Clean Professional Style ===== */
.top-header-strip {
  background: #0b1f2a; /* Dark blue background */
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  font-family: 'Roboto', sans-serif;
}

.top-header-strip .container-fluid {
  padding: 0 20px;
}

/* Website name on left */
.website-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.website-name a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.website-name a:hover {
  color: #e6b800; /* Gold color on hover */
  text-decoration: none;
}

/* Buttons on the right */
.top-buttons {
  display: flex;
  align-items: center;
  gap: 0; /* No gap, we'll use separators */
}

.top-btn {
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 2px 10px;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.top-btn:hover {
  color: #e6b800; /* Gold color on hover */
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
}

/* Highlight the Submit Article button */
.highlight-btn {
  background: #e6b800;
  color: #000 !important;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 3px;
  margin-left: 5px;
}

.highlight-btn:hover {
  background: #ffcc00;
  color: #000 !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Separator between buttons */
.separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  padding: 0 2px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .top-header-strip .d-flex {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .website-name {
    margin-bottom: 5px;
  }
  
  .top-buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
  }
  
  .separator {
    display: none; /* Hide separators on mobile */
  }
  
  .top-btn {
    padding: 3px 8px;
    font-size: 0.8rem;
  }
  
  .highlight-btn {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .top-header-strip {
    padding: 8px 0;
  }
  
  .top-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
    max-width: 300px;
  }
  
  .top-btn {
    text-align: center;
    padding: 6px;
    font-size: 0.75rem;
  }
  
  .highlight-btn {
    grid-column: span 2; /* Make Submit Article full width on mobile */
  }
}

@media (max-width: 576px) {
  .top-header-strip .container-fluid {
    padding: 0 15px;
  }
  
  .top-buttons {
    grid-template-columns: 1fr;
    max-width: 200px;
  }
  
  .highlight-btn {
    grid-column: span 1;
  }
  
  .website-name {
    font-size: 0.8rem;
  }
}