﻿@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;
}

.main-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 30px;
}
.main-content .left-panel {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.main-content .left-panel .panel-header {
  background: #2cab00;
  color: white;
  padding: 20px 30px;
  font-size: 20px;
  font-weight: 600;
}
.main-content .left-panel .search-section {
  padding: 30px;
  border-bottom: 1px solid #e0e0e0;
}
.main-content .left-panel .search-section .search-box {
  display: grid;
  gap: 10px;
  grid-template-columns: 2fr 1fr 1fr auto;
  align-items: end;
}
.main-content .left-panel .pagination-wrapper {
  background: #f8f9fa;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e9ecef;
}
.main-content .left-panel .pagination-wrapper #page-info {
  font-size: 14px;
  color: #666;
}
.main-content .left-panel .pagination-wrapper .pagination {
  display: flex;
  align-items: center;
  gap: 5px;
}
.main-content .left-panel .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;
}
.main-content .left-panel .pagination-wrapper .pagination .page-btn:hover:not(:disabled):not(.active) {
  background: #f8f9fa;
  border-color: #4a90e2;
  color: #333;
}
.main-content .left-panel .pagination-wrapper .pagination .page-btn:disabled {
  background: #f8f9fa;
  border-color: #e0e6ed;
  color: #999;
  cursor: not-allowed;
}
.main-content .left-panel .pagination-wrapper .pagination .page-btn.page-prev, .main-content .left-panel .pagination-wrapper .pagination .page-btn.page-next {
  font-weight: 600;
}
@media (max-width: 768px) {
  .main-content .left-panel .pagination-wrapper {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .main-content .left-panel .pagination {
    justify-content: center;
  }
}
.main-content .right-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main-content .right-panel .quick-actions {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 4px;
  padding: 25px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.main-content .right-panel .quick-actions h3 {
  color: #333;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}
.main-content .right-panel .quick-actions .quick-action-btn {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  text-align: center;
  padding: 15px;
  font-size: 16px;
}
.main-content .right-panel .stats-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 4px;
  padding: 25px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.main-content .right-panel .stats-card h3 {
  color: #333;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}
.main-content .right-panel .stats-card .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.main-content .right-panel .stats-card .stats-grid .stat-item {
  text-align: center;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 4px;
}
.main-content .right-panel .stats-card .stats-grid .stat-item .stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #4CAF50;
}
.main-content .right-panel .stats-card .stats-grid .stat-item .stat-number.primary {
  color: #4A90E2;
}
.main-content .right-panel .stats-card .stats-grid .stat-item .stat-number.success {
  color: #28a745;
}
.main-content .right-panel .stats-card .stats-grid .stat-item .stat-number.warning {
  color: #ffc107;
}
.main-content .right-panel .stats-card .stats-grid .stat-item .stat-number.info {
  color: #17a2b8;
}
.main-content .right-panel .stats-card .stats-grid .stat-item .stat-number.danger {
  color: #dc3545;
}
.main-content .right-panel .stats-card .stats-grid .stat-item .stat-label {
  font-size: 12px;
  color: #6c757d;
  margin-top: 5px;
}

.reports-list {
  padding: 30px;
}
.reports-list .report-item {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 15px;
  transition: all 0.1s ease;
  position: relative;
}
.reports-list .report-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.reports-list .report-item.new {
  background: #f8fff8;
}
.reports-list .report-item.urgent {
  border-color: #dc3545;
  background: #fff8f8;
}
.reports-list .report-item .priority-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.reports-list .report-item .report-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}
.reports-list .report-item .report-header .report-title {
  font-weight: 700;
  color: #2c3e50;
  font-size: 16px;
  flex: 1;
}
.reports-list .report-item .report-header .report-status {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 10px;
}
.reports-list .report-item .report-header .report-status.status-pending {
  background: #fff3cd;
  color: #856404;
}
.reports-list .report-item .report-header .report-status.status-received {
  background: #d1ecf1;
  color: #0c5460;
}
.reports-list .report-item .report-header .report-status.status-processing {
  background: #e2e3e5;
  color: #383d41;
}
.reports-list .report-item .report-sender {
  background: #e3f2fd;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 15px;
}
.reports-list .report-item .report-sender .sender-name {
  font-weight: 600;
  color: #1976d2;
  margin-bottom: 5px;
}
.reports-list .report-item .report-sender .sender-info {
  font-size: 13px;
  color: #666;
}
.reports-list .report-item .report-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #6c757d;
}
.reports-list .report-item .report-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-sm {
  padding: 8px;
  font-size: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 200px;
}

.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);
}

.file-upload {
  border: 2px dashed #4CAF50;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  background: #f8fff8;
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-upload:hover {
  background: #f0fff0;
  border-color: #45a049;
}

.file-upload input {
  display: none;
}

@media (max-width: 1024px) {
  .main-content {
    grid-template-columns: 1fr;
  }
  .right-panel {
    order: -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;
  }
}
