    :root {
            --primary-color: #307dad;
            --secondary-color: #28668c;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
            --gradient: linear-gradient(135deg, #3498db, #8e44ad);
        }
      
/* General Table Styling */
.hoverTable,
.editor-table {
    width: 100%;
    border-collapse: collapse;
}

.hoverTable th,
.editor-table th {
    height: 30px;
    background: #ffffff;
    color: var(--secondary-color);
}

.hoverTable td,
.editor-table td {
    height: 30px;
    padding-top: 3px;
    vertical-align: middle;
    border-bottom: 1px solid #ffffff;
    text-align: center;
}

/* Hover Effects for hoverTable */
.hoverTable tr {
    background: var(--secondary-color);
    color: #ffffff;
}

.hoverTable tr:hover {
    background-color: #76530c;
}

.hoverTable a {
    color: #ffffff;
}

.hoverTable a:hover {
    color: var(--accent-color);
}

.hoverTable td a {
    width: 100%;
    display: block;
}

/* editor-table Specific Styling */
.editor-table tr {
    border-bottom: 2px solid #dddddd;
}

.editor-table tbody tr:hover {
    background-color: gainsboro;
}

.editor-table img {
    width: 100%;
    height: auto;
}
.editor-table {
    border-collapse: collapse;
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  }
  .editor-table thead tr {
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: left;
  }
  .editor-table th,
  .editor-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
  }
  .editor-table tbody tr {
    border-bottom: 1px solid #dddddd;
  }
  .editor-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
  }
  .editor-table tbody tr:last-of-type {
    border-bottom: 2px solid var(--primary-color);
  }
  .editor-table tbody tr:hover {
    background-color: #f5f5f5;
    transition: background-color 0.3s ease;
  }
  .editor-table td:first-child {
    font-weight: bold;
    line-height: 1.5;
    text-align: left;
}
  .editor-table img {
    display: block;
    margin: 0 auto;
    border-radius: 50%;
  }
/* Footer and Page Layout Styling */
.pkp_brand_footer {
    display: none;
}

.pkp_structure_page {
    margin-top: 0;
    margin-bottom: 0;
}

.pkp_structure_main h1 {
    font-weight: 600;
    font-size: 20px;
}

/* Link Styling */
a {
    color: var(--primary-color);
}

.pkp_navigation_primary_row {
    background-color: #fff;
    text-align: left;
    padding-left: 15px;
}

#navigationPrimary a {
    font-size: 13.5px;
    font-weight: 100;
    text-transform: capitalize;
    color: var(--dark-color);
}

.pkp_navigation_user_wrapper a {
    font-size: 15px;
    font-weight: 200;
}

/* Search Bar Styling */
.pkp_head_wrapper .pkp_search .search_controls .search_prompt {
    font-size: 13.5px;
    font-weight: 100;
    text-transform: capitalize;
}


/* Block Element Styling */
.pkp_block {
    font-size: 14px;
    line-height: 1.5; /* Using unit-less line-height */
    clear: both;
    border-bottom: 1.5px solid #ddd;
}

.pkp_structure_sidebar {
    background: #ffffff;
}

.pkp_block .title {
    display: inline-block;
    padding-bottom: 0;
    border-bottom: 3px solid var(--accent-color);
    font-weight: 600;
    text-transform: capitalize;
}

/* Article and Section Heading Styling */
.obj_issue_toc .section h2,
.obj_article_details .main_entry .label {
    display: inline-block;
    padding: 0 0 5px;
    border-bottom: 3px solid var(--accent-color);
    font-weight: 700;
    text-transform: capitalize;
    color: rgba(0,0,0,0.54);
}

.obj_article_summary .title {
    font-size: 14.5px;
    line-height: 20px;
    font-weight: 100;
}

.obj_article_summary {
    padding-bottom: 10px !important;
    border-bottom: solid 1px var(--accent-color) !important;      
    font-size: 12px;
}

/* Miscellaneous */
.pkp_footer_content {
    float: none;
    width: 100%;
    clear: both;
    padding-top: 10px;
}

.pkp_brand_footer {
    background: var(--light-color);
}

.obj_galley_link {
    font-weight: 700;
    text-transform: capitalize;
    background: var(--primary-color);
    color: #fff;
    border: none;
}

.cmp_breadcrumbs {
    text-transform: capitalize;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active {
    background: var(--secondary-color);         
    border: 0 solid #3c2d61;
}
