﻿@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;
  }
}
#latest-news {
  width: 90%;
  margin: 30px auto;
}
#latest-news .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;
}
#latest-news .page-container .page-header {
  background: #2cab00;
  color: white;
  padding: 20px 30px;
  font-size: 20px;
  font-weight: 600;
}
#latest-news .page-container .page-body .search-section {
  padding: 30px;
  border-bottom: 1px solid #e0e0e0;
}
#latest-news .page-container .page-body .search-section .search-box {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 10px;
  align-items: end;
}
#latest-news .page-container .page-body .results-section {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 30px;
}
#latest-news .page-container .page-body .results-section .pagination-wrapper {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e9ecef;
}
#latest-news .page-container .page-body .results-section .pagination-wrapper #page-info {
  font-size: 14px;
  color: #666;
}
#latest-news .page-container .page-body .results-section .pagination-wrapper .pagination {
  display: flex;
  align-items: center;
  gap: 5px;
}
#latest-news .page-container .page-body .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;
}
#latest-news .page-container .page-body .results-section .pagination-wrapper .pagination .page-btn:hover:not(:disabled):not(.active) {
  background: #f8f9fa;
  border-color: #4a90e2;
  color: #333;
}
#latest-news .page-container .page-body .results-section .pagination-wrapper .pagination .page-btn:disabled {
  background: #f8f9fa;
  border-color: #e0e6ed;
  color: #999;
  cursor: not-allowed;
}
#latest-news .page-container .page-body .results-section .pagination-wrapper .pagination .page-btn.page-prev, #latest-news .page-container .page-body .results-section .pagination-wrapper .pagination .page-btn.page-next {
  font-weight: 600;
}
@media (max-width: 768px) {
  #latest-news .page-container .page-body .results-section .pagination-wrapper {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  #latest-news .page-container .page-body .results-section .pagination {
    justify-content: center;
  }
}
