.report-card {
    display: flex;
    flex-direction: row;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    /* margin-bottom: 20px; */
    /* padding: 20px; */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
  }

  .report-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .report-thumb {
    flex: 1;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .report-thumb img {
    width: 120px;
    height: 100px;
    border-radius: 4px;
    object-fit: cover;
    object-position: center;
  }

  .report-thumb img.landscape {
    display: none;
  }

  .report-content {
    flex: 4;
    /* padding-right: 20px; */
  }

  .report-title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #004d99;
    /* Standard corporate blue */
    text-decoration: none;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .report-title:hover {
    text-decoration: underline;
    color: #003366;
  }

  .report-description {
    font-size: 14px;
    color: #555;
    /* line-height: 1.6; */
    margin-bottom: 15px;
  }

  .report-meta {
    font-size: 13px;
    color: #777;
    background-color: #f9f9f9;
    padding: 8px;
    border-radius: 4px;
    display: inline-block;
  }

  .separator {
    margin: 0 8px;
    color: #ccc;
  }

  .report-actions {
    flex: 1;
    min-width: 200px;
    border-left: 1px solid #eee;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .price-box {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .price-label {
    color: #666;
    margin-right: 5px;
  }

  .price-old {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
  }

  .price-new {
    font-size: 20px;
    font-weight: 700;
    color: #d9534f;
  }

  .discount-badge {
    font-size: 12px;
    color: #28a745;
    font-weight: 600;
    margin-left: 5px;
  }

  .license-info,
  .format-info {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
  }

  .format-info i {
    color: #d9534f;
    margin-right: 5px;
  }

  .button-group {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    flex: 1;
    padding: 10px 5px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    text-transform: uppercase;
  }

  .btn-outline {
    background-color: transparent;
    border: 1px solid #004d99;
    color: #004d99;
  }

  .btn-outline:hover {
    background-color: #004d99;
  }

  .btn-primary {
    background-color: #f68b1f;
    border: 1px solid #f68b1f;
    color: #fff;
  }

  .btn-primary:hover {
    background-color: #e07a10;
    border-color: #e07a10;
  }

  @media (max-width: 768px) {
    .report-card {
      flex-direction: column;
    }

    .report-thumb {
      padding-right: 0;
      margin-bottom: 15px;
    }

    .report-actions {
      border-left: none;
      border-top: 1px solid #eee;
      padding-left: 0;
      padding-top: 15px;
      margin-top: 15px;
    }

    .report-content {
      padding-right: 0;
    }
  }

  .report-content h2 {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .toggle-btn:hover {
    background: #e8f0f7 !important;
    color: #004d99 !important;
  }

  .toggle-btn.active:hover {
    background: #003d7a !important;
    color: white !important;
  }

  .category-view {
    animation: fadeIn 0.3s ease-in;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .region-categories-card {
      background: #ffffff;
      border: 1px solid #e0e0e0;
      border-radius: 5px;
      padding: 20px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      margin-bottom: 20px;
  }

  .sidebar-title {
      font-size: 18px;
      font-weight: 600;
      color: #2c3e50;
      margin-bottom: 15px;
      padding-bottom: 10px;
      border-bottom: 2px solid #f0f0f0;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .sidebar-title i {
      color: #004d99;
  }

  .region-list {
      list-style: none;
      padding: 0;
      margin: 0;
      max-height: 500px;
      overflow-y: auto;
  }

  .region-list li {
      margin-bottom: 4px;
  }

  .region-link {
      display: flex;
      align-items: center;
      padding: 10px 15px;
      color: #555;
      font-size: 14px;
      text-decoration: none;
      border-radius: 6px;
      transition: all 0.2s ease-in-out;
      border: 1px solid transparent;
  }

  .region-link i {
      margin-right: 12px;
      width: 20px;
      text-align: center;
      color: #999;
      transition: color 0.2s;
  }

  .region-link:hover {
      background-color: #f0f4f8;
      color: #004d99;
      text-decoration: none;
  }

  .region-link:hover i {
      color: #004d99;
  }

  .region-link.active-country {
      color: #004d99;
      font-weight: 600;
  }

  .region-link.active-country i {
            color: #004d99;
  }

  .region-list::-webkit-scrollbar {
      width: 5px;
  }

  .region-list::-webkit-scrollbar-track {
      background: #f1f1f1;
  }

  .region-list::-webkit-scrollbar-thumb {
      background: #ccc;
      border-radius: 3px;
  }

  .region-list::-webkit-scrollbar-thumb:hover {
      background: #999;
  }