﻿@charset "UTF-8";
/******* RESPONSIVE ********/
/****Màn hình máy tính thông thường****/
/****Màn hình desktop loại bé****/
/**** Màn hình ipad hiển thị theo chiều ngang (Landscape) ****/
/****Màn hình ipad loại bé hiển thị theo chiều ngang (Landscape)****/
/****Màn hình ipad hiển thị theo chiều dọc (Portrait)****/
/****Màn hình ipad loại bé hiển thị theo chiều dọc (Portrait)****/
/****Màn hình điện thoại hiển thị theo chiều ngang (Landscape)****/
/****Màn hình điện thoại Iphone Plus****/
/****Màn hình điện thoại Iphone****/
/****Màn hình điện thoại loại bé****/
@font-face {
  font-family: "Manrope";
  src: url("../../fonts/Manrope/Manrope-VariableFont_wght.ttf") format("truetype");
}
ul, li {
  list-style: none;
}

body {
  color: #0a2540;
  font-family: Manrope, Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
}

p {
  margin: 0 auto;
}

a:hover {
  text-decoration: none;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.form-group label {
  font-weight: 600;
  color: #2c3e50;
  font-size: 14px;
}

.form-group input, .form-group select, .form-group textarea {
  padding: 8px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  background-color: #fff;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: #4CAF50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

@media (max-width: 768px) {
  .search-box {
    flex-direction: column;
  }
  .form-group {
    min-width: 100%;
  }
  .report-info {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
#legal-docs {
  width: 90%;
  margin: 30px auto;
}
#legal-docs .page-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
#legal-docs .page-container .page-header {
  background: #2cab00;
  color: white;
  padding: 20px 30px;
  font-size: 20px;
  font-weight: 600;
}
#legal-docs .page-container .search-section {
  padding: 30px;
  border-bottom: 1px solid #e0e0e0;
}
#legal-docs .page-container .search-section .search-box {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 10px;
  align-items: end;
}
#legal-docs .page-container .results-section {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 30px;
}
#legal-docs .page-container .results-section .table tbody tr td {
  vertical-align: middle;
}
#legal-docs .page-container .results-section .table tbody tr .document-id {
  color: #333;
  cursor: pointer;
}
#legal-docs .page-container .results-section .table tbody tr .document-date {
  color: #333;
}
#legal-docs .page-container .results-section .table tbody tr .document-title {
  color: #333;
  cursor: pointer;
}
#legal-docs .page-container .results-section .table tbody tr .document-link {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  color: #007bff;
  text-decoration: none;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  transition: all 0.2s;
}
#legal-docs .page-container .results-section .table tbody tr .document-link i {
  color: #dc3545;
  margin-right: 0.5rem;
}
#legal-docs .page-container .results-section .pagination-wrapper {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e9ecef;
}
#legal-docs .page-container .results-section .pagination-wrapper #page-info {
  font-size: 14px;
  color: #666;
}
#legal-docs .page-container .results-section .pagination-wrapper .pagination {
  display: flex;
  align-items: center;
  gap: 5px;
}
#legal-docs .page-container .results-section .pagination-wrapper .pagination .page-btn {
  background: white;
  border: 1px solid #ccc;
  color: #333;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  min-width: 40px;
  text-align: center;
}
#legal-docs .page-container .results-section .pagination-wrapper .pagination .page-btn:hover:not(:disabled):not(.active) {
  background: #f8f9fa;
  border-color: #4a90e2;
  color: #333;
}
#legal-docs .page-container .results-section .pagination-wrapper .pagination .page-btn:disabled {
  background: #f8f9fa;
  border-color: #e0e6ed;
  color: #999;
  cursor: not-allowed;
}
#legal-docs .page-container .results-section .pagination-wrapper .pagination .page-btn.page-prev, #legal-docs .page-container .results-section .pagination-wrapper .pagination .page-btn.page-next {
  font-weight: 600;
}
@media (max-width: 768px) {
  #legal-docs .page-container .results-section .pagination-wrapper {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  #legal-docs .page-container .results-section .pagination {
    justify-content: center;
  }
}

#info-document .page-header {
  border-bottom: 2px solid #dee2e6;
  padding: 1rem 1.5rem;
}
#info-document .page-body {
  padding: 1.5rem;
}
#info-document .page-body .document-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
#info-document .page-body .info-table {
  border: none;
}
#info-document .page-body .info-table tr:nth-child(odd) {
  background-color: #f8f9fa;
}
#info-document .page-body .info-table td {
  border: 1px solid #eee;
  padding: 0.75rem 1rem;
  vertical-align: middle;
}
#info-document .page-body .info-table .info-label {
  font-weight: 500;
  color: #6c757d;
  width: 150px;
  min-width: 150px;
}
#info-document .page-body .info-table .info-value {
  color: #495057;
  font-weight: 500;
}
#info-document .page-body .info-table .attachment {
  display: flex;
  align-items: center;
}
#info-document .page-body .info-table .attachment .file-icon {
  color: #dc3545;
  margin-right: 0.5rem;
  font-size: 1.2rem;
}
#info-document .page-body .info-table .attachment .file-name {
  text-decoration: none;
  font-weight: 500;
}
#info-document .page-body .info-table .attachment .file-actions {
  display: flex;
  margin-left: 20px;
}
#info-document .page-body .info-table .attachment .file-actions .action-btn {
  background: none;
  border: none;
  color: #6c757d;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
}
#info-document .page-body .info-table .attachment .file-actions .action-btn:hover {
  background-color: #e9ecef;
  color: #495057;
}
