.cmp_notification {
    background: none !important;
}

.copyright_notice table img {
    display: inline !important;
}

.dark .cmp_form input {
    background: white !important;
    color: black;
}

.dark td span {
    color: #8ed8f8 !important;
}

.dark .affiliations {
    color: #8ed8f8 !important;
}

.dark .pkp_structure_sidebar .pkp_block .title {
    color: #8ed8f8 !important;
}

.dark #menu-open svg rect {
    fill: white !important;
  }

.dark .obj_issue_summary .series {
    color: #8ed8f8 !important;
}

.object-cover {
    object-fit: cover;
    display: none;
}
/* General table styles */
.table-container {
    width: 100%;
    overflow-x: auto; /* Enable horizontal scroll */
    margin: 20px auto;
    border: 2px solid #0044aa;
    border-radius: 8px;
    padding: 10px;
  }
  
  .responsive-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    text-align: left;
  }
  
  .responsive-table th,
  .responsive-table td {
    padding: 10px;
    border: 1px solid #0044aa;
  }
  
  /* Header styles */
  .responsive-table thead {
    background-color: #0044aa;
    color: #fff;
  }
  
  .responsive-table th {
    font-weight: bold;
  }

  .page a {
    color: #78a9f3;
    text-decoration: underline;
    text-decoration-thickness: 1.5px; /* Optional: adjust thickness */
    text-underline-offset: 3px; /* Optional: adds spacing between text and underline */
 }

  
  /* Add horizontal scroll on smaller screens */
  @media (max-width: 768px) {
    .table-container {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
    }
  
    .responsive-table {
      width: 100%;
      min-width: 800px; /* Ensure horizontal scrolling if table is wider than screen */
    }
  }
