* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Be Vietnam Pro",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background-color: #f8f9fa;
  min-height: 100vh;
  color: #333;
  display: flex;
  flex-direction: column;
  margin: 0;
}

.neu-navbar {
  background-color: #00529c;
  width: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  padding: 0 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
}

.brand-logo {
  height: 50px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-vn {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.brand-en {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-item {
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.2s;
  position: relative;
}

.nav-item:hover {
  opacity: 0.8;
}

.nav-item.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: white;
}

.nav-btn {
  background-color: white;
  color: #00529c;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-content-wrapper {
  padding: 36px 20px 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  flex: 1 0 auto;
}

.page-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  padding: 24px;
}

footer {
  text-align: center;
  padding: 20px;
  color: #555;
  font-size: 14px;
  background-color: #ffffff;
  border-top: 1px solid #ddd;
  width: 100%;
  flex-shrink: 0;
}

footer p {
  margin-bottom: px;
}

footer p:last-child {
  color: #94a3b8;
  font-size: 12px;
  margin-bottom: 0;
}

.row-link,
.page-link {
  color: #00529c;
  font-weight: 500;
}

.row-link:hover,
.breadcrumb a:hover,
.page-link:hover {
  color: #c8102e;
}

button[type="submit"],
.btn-primary,
button {
  background-color: #00529c !important;
  border: none;
  color: white;
  border-radius: 6px;
  font-family: inherit;
  height: 38px !important;
  padding: 0 20px !important;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-sizing: border-box;
  cursor: pointer;
}

button[type="submit"]:hover,
.btn-primary:hover,
button:hover {
  background-color: #003d75 !important;
}

@media print {
  .neu-navbar,
  footer {
    display: none !important;
  }
  .main-content-wrapper {
    padding: 0 !important;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .brand-vn {
    font-size: 15px;
  }
  .brand-en {
    font-size: 9px;
  }
  .brand-logo {
    height: 40px;
  }
}

.table-wrapper {
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  background: #f8f9fa;
  border-bottom: 2px solid #dee2e6;
}

th {
  padding: 15px 20px;
  text-align: left;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

td {
  padding: 15px 20px;
  border-bottom: 1px solid #dee2e6;
  font-size: 14px;
  color: #555;
}

tbody tr {
  transition: background-color 0.2s;
  cursor: pointer;
}

tbody tr:hover {
  background-color: #f8f9fa;
}

a.row-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: color 0.2s;
}

a.row-link:hover {
  color: #5569d8;
  text-decoration: underline;
}

.description {
  color: #666;
  font-size: 13px;
  line-height: 1.4;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.empty-state {
  background: transparent;
  padding: 60px 20px;
  border-radius: 0;
  text-align: center;
  color: #999;
}

.empty-state p {
  font-size: 16px;
  margin-bottom: 10px;
}

.pagination {
  background: transparent;
  padding: 15px 20px;
  border-radius: 0;
  margin-top: 20px;
  text-align: center;
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 8px 12px;
  margin: 0 3px;
  border-radius: 4px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #667eea;
  cursor: pointer;
}

.pagination a:hover {
  background: #f8f9fa;
}

.pagination .current {
  background: #667eea;
  color: white;
  border-color: #667eea;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  background: #e7f3ff;
  color: #0066cc;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.container {
  padding-bottom: 60px;
}

.filters {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-bottom: 20px;
}

.filter-group label {
  font-weight: 600;
  color: #444;
  font-size: 14px;
  white-space: nowrap;
}

.filter-group input[type="text"] {
  padding: 0 14px;
  height: 38px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  width: 280px;
  font-family: inherit;
  transition: all 0.2s;
}

.filter-group input[type="text"]:focus {
  border-color: #00529c;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 82, 156, 0.1);
}

.filter-group button[type="submit"],
.filter-group form > a {
  height: 38px !important;
  padding: 0 20px !important;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  text-decoration: none;
  box-sizing: border-box;
  cursor: pointer;
  border: none;
}

.filter-group form > a {
  background-color: #9ca3af !important;
  color: white !important;
  transition: background-color 0.2s;
}

.filter-group form > a:hover {
  background-color: #6b7280 !important;
}

.breadcrumb {
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
  background: white;
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.breadcrumb a {
  color: #00529c;
  text-decoration: none;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
  transition: 0.2s;
}

.breadcrumb a:hover {
  background: #f0f4f8;
  color: #c8102e;
}

.breadcrumb strong {
  color: #333;
  font-weight: 600;
  padding: 4px 8px;
}

.bc-sep {
  color: #999;
  font-size: 12px;
}

.bc-arrow {
  font-size: 10px;
  color: #888;
  margin-left: 4px;
  display: inline-block;
  vertical-align: middle;
}

.bc-dropdown {
  position: relative;
  display: inline-block;
}

.bc-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 260px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  max-height: 350px;
  overflow-y: auto;
  margin-top: 0;
}

.bc-dropdown:hover .bc-dropdown-content,
.bc-dropdown:focus-within .bc-dropdown-content {
  display: block;
}

.user-dropdown {
  padding-bottom: 10px;
  margin-bottom: -10px;
}

.bc-dropdown-content a {
  color: #444;
  padding: 10px 16px;
  display: block;
  border-bottom: 1px solid #f8f9fa;
  font-weight: 400;
  border-radius: 0;
}

.bc-dropdown-content a:hover {
  background-color: #f4f6f9;
  color: #00529c;
  padding-left: 20px;
}

.bc-dropdown-content a.bc-active {
  background-color: #e6f0fa;
  color: #00529c;
  font-weight: 600;
  border-left: 3px solid #00529c;
}

.dropdown-disabled {
  color: #94a3b8;
  padding: 10px 16px;
  display: block;
  font-size: 13px;
  border-bottom: 1px solid #f8f9fa;
}

.neu-footer {
  width: 100%;
  background-color: #00529c;
  color: white;
  padding: 24px 0;
  margin-top: auto;
  flex-shrink: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.neu-footer p {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.neu-footer .footer-sub {
  font-size: 13px;
  color: #b3d4f0;
  margin-bottom: 0;
  font-weight: 400;
}

.search-container,
.filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}

.search-container form,
.filters form {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.btn-my-curriculum {
  height: 38px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  background-color: #00529c;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  gap: 6px;
  box-sizing: border-box;
  border: 1px solid #00529c;
  transition: all 0.2s ease-in-out;
}

.btn-my-curriculum:hover {
  background-color: #003a70;
  border-color: #003a70;
  color: white;
}
