* {
      box-sizing: border-box;
      font-family: 'Segoe UI', Arial, sans-serif;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: ;
      padding: 20px 15px;
      color: #333;
    }

    /* Main Layout Container */
    .container {
      max-width: 1120px;
      margin: 0 auto;
      width: 100%;
      box-sizing: border-box;
    }

    /* Header Section */
    .header-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 20px;
    }

    .page-title {
      font-size: 22px;
      font-weight: 700;
      color: #1e293b;
    }

    .header-buttons {
      display: flex;
      gap: 10px;
      align-items: center;
      flex-wrap: wrap;
    }

    .btn-cover-page {
      padding: 8px 16px;
      border-radius: 6px;
      font-size: 13.5px;
      font-weight: 500;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.2s ease;
      color: #ffffff !important;
    }

    .btn-cover-page i {
      color: #ffffff !important;
    }

    .btn-cover-front {
      background-color: #0d6efd;
      box-shadow: 0 2px 4px rgba(13, 110, 253, 0.2);
    }

    .btn-cover-front:hover {
      background-color: #0b5ed7;
    }

    .btn-cover-back {
      background-color: #475569;
      box-shadow: 0 2px 4px rgba(71, 85, 105, 0.2);
    }

    .btn-cover-back:hover {
      background-color: #334155;
    }

    /* Search Controls */
    .controls {
      margin-bottom: 20px;
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .search-box {
      position: relative;
      flex: 1;
      min-width: 250px;
    }

    .search-box input {
      width: 100%;
      padding: 10px 15px 10px 38px;
      border: 1px solid #cbd5e1;
      border-radius: 6px;
      font-size: 14px;
      outline: none;
      transition: border-color 0.2s;
    }

    .search-box input:focus {
      border-color: #0d6efd;
    }

    .search-box i {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: #94a3b8;
    }

    /* Integrated Table Card Wrapper */
    .table-responsive {
      width: 100%;
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      border: 1px solid #e2e8f0;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    .paper-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
      text-align: left;
      table-layout: fixed;
    }

    .paper-table th, 
    .paper-table td {
      border: 1px solid #e2e8f0;
      padding: 12px 14px;
      vertical-align: top;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .paper-table th {
      background-color: #f8fafc;
      font-weight: 600;
      color: #475569;
      text-transform: uppercase;
      font-size: 12px;
      letter-spacing: 0.5px;
      border-top: none;
    }

    /* Column Sizing Percentages */
    .col-sno {
      width: 8%;
      text-align: center;
    }

    .col-title {
      width: 53%;
    }

    .col-area {
      width: 16%;
      text-align: center;
    }

    .col-id {
      width: 13%;
      text-align: center;
    }

    /* Article Title Styling */
    .article-title {
      color: #0d6efd;
      font-weight: 600;
      display: block;
      margin-bottom: 8px;
      font-size: 16px;
      line-height: 1.4;
    }

    .authors {
      margin-bottom: 8px;
      color: #475569;
      line-height: 1.4;
      font-size: 14px;
    }

    .author-icon {
      color: #dc3545;
      margin-right: 5px;
    }

    .pages {
      color: #64748b;
      margin-bottom: 12px;
      font-size: 13px;
    }

    .badge {
      display: inline-block;
      padding: 4px 10px;
      border-radius: 12px;
      font-size: 12px;
      font-weight: 500;
      background-color: #e2e8f0;
      color: #334155;
    }

    /* Action Buttons */
    .btn-actions {
      display: flex;
      gap: 8px;
      align-items: center;
      margin-top: 10px;
      flex-wrap: wrap;
    }

    .btn {
      padding: 7px 12px;
      border-radius: 5px;
      font-size: 12.5px;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: all 0.2s ease;
      white-space: nowrap;
    }

    .btn-outline-blue {
      background-color: #ffffff;
      color: #0d6efd !important;
      border: 1px solid #0d6efd;
    }

    .btn-outline-blue i {
      color: #0d6efd !important;
    }

    .btn-outline-blue:hover {
      background-color: #0d6efd;
      color: #ffffff !important;
    }

    .btn-outline-blue:hover i {
      color: #ffffff !important;
    }

    .btn-solid-green {
      background-color: #198754;
      color: #ffffff !important;
      border: 1px solid #198754;
    }

    .btn-solid-green i {
      color: #ffffff !important;
    }

    .btn-solid-green:hover {
      background-color: #146c43;
    }

    .btn-solid-red {
      background-color: #dc3545;
      color: #ffffff !important;
      border: 1px solid #dc3545;
    }

    .btn-solid-red i {
      color: #ffffff !important;
    }

    .btn-solid-red:hover {
      background-color: #bb2d3b;
    }

    /* Integrated Under Review Banner */
    .under-review-banner {
      padding: 14px 20px;
      background-color: #fff8e6;
      border-top: 1px solid #ffe08a;
      border-bottom: 1px solid #ffe08a;
      color: #854d0e;
      font-size: 14px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      text-align: center;
    }

    .under-review-banner i {
      color: #d97706;
      font-size: 16px;
    }

    /* Integrated Pages Pagination Bar */
    .pages-pagination {
      padding: 16px 20px;
      background-color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .pages-label {
      font-size: 15px;
      color: #333333;
      font-weight: 500;
    }

    .page-links {
      display: flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
    }

    .page-link {
      color: #0d6efd !important;
      font-size: 15px;
      font-weight: 500;
      text-decoration: none;
      padding: 2px 4px;
      transition: color 0.2s ease;
    }

    .page-link:hover {
      color: #0b5ed7 !important;
      text-decoration: underline;
    }

    .page-link.active {
      font-weight: 700;
      color: #000000 !important;
    }

    /* Responsive Mobile Media Queries */
    @media (max-width: 768px) {
      body {
        padding: 10px 8px;
      }

      .header-top {
        flex-direction: column;
        align-items: flex-start;
      }

      .header-buttons {
        width: 100%;
        flex-direction: column;
        gap: 8px;
      }

      .btn-cover-page {
        width: 100%;
        justify-content: center;
      }

      .table-responsive {
        box-shadow: none;
        background-color: transparent;
        border: none;
        overflow-x: visible;
      }

      .paper-table, 
      .paper-table thead, 
      .paper-table tbody, 
      .paper-table th, 
      .paper-table td, 
      .paper-table tr {
        display: block;
        width: 100% !important;
      }

      .paper-table thead {
        display: none;
      }

      .paper-table tbody tr {
        background: #ffffff;
        margin-bottom: 14px;
        border-radius: 8px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        padding: 14px;
      }

      .paper-table td {
        border: none;
        padding: 4px 0;
      }

      .paper-table td.col-sno {
        display: inline-block;
        background-color: #f1f5f9;
        color: #475569;
        font-weight: bold;
        padding: 2px 8px;
        border-radius: 4px;
        font-size: 12px;
        margin-bottom: 10px;
        width: auto !important;
        text-align: left;
      }

      .paper-table td.col-area {
        margin-top: 8px;
        margin-bottom: 6px;
        text-align: left;
      }

      .paper-table td.col-area::before {
        content: "Area: ";
        font-weight: bold;
        color: #64748b;
        font-size: 12px;
      }

      .paper-table td.col-id {
        margin-bottom: 8px;
        text-align: left;
      }

      .paper-table td.col-id::before {
        content: "Paper ID: ";
        font-weight: bold;
        color: #64748b;
        font-size: 12px;
      }

      .btn-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-top: 12px;
      }

      .btn {
        width: 100%;
        justify-content: center;
        padding: 9px 6px;
      }

      .btn-outline-blue {
        grid-column: span 2;
      }

      .under-review-banner {
        border-radius: 8px;
        margin-bottom: 14px;
        border: 1px solid #ffe08a;
      }

      .pages-pagination {
        background: #ffffff;
        border-radius: 8px;
        border: 1px solid #e2e8f0;
      }
    }