* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Xóa gạch chân & đổi màu mặc định */
a {
  text-decoration: none;
  color: rgb(35, 42, 238); /* Màu bình thường */
  font-size: 15px;
  font-family: "Times New Roman", serif;
  transition: color 0.3s ease; /* Hiệu ứng mượt */
}

/* Khi di chuột vào, đổi màu */
a:hover {
  color: orange; /* Đổi thành màu đỏ */
}

table a:hover {
  color: orange;
}

/* Lia đến menu nào hiện màu đỏ đánh dấu */
table a:hover {
  color: orange;
}

table a.active {
  color: red; /* Màu khi đang ở trang đó */
}
/* Nội dung */

/* Phần tiêu đề */
.title {
  font-family: "Times New Roman", serif;
  color: coral;
  font-size: 50px;
  font-weight: bold;
  animation: slideInUp 1s ease-out forwards;
}

@keyframes slideInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.avatar {
  width: 47px;
  height: 47px;
  object-fit: cover;
  border-radius: 50%;
}
/* Phần thân trang mục 1 */
.customtable {
  width: 100%;
  border-spacing: 0;
}

.customtable1 {
  text-align: center;
}

.customtable2 {
  width: 10%;
  border-spacing: 0;
  vertical-align: top; /* Căn nội dung lên trên */
  border: 1px solid royalblue;
  animation: slideInLeft 1s ease forwards;
  margin-top: 40px;
}
@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Phần thân trang mục 2 */
.customtablecontent {
  height: 1200px;
  width: 100%;
  border-spacing: 0;
}

.customtd {
  width: 10%;
  vertical-align: top;
}

.td-background {
  animation: slideInLeft 1s ease forwards;
}
.customeiframe {
  width: 100%;
  height: 1900px;
  border: none;
  padding-left: 10px;
  margin-bottom: 100px;
  animation: slideInUp 1s ease-out forwards;
}

/* Chân trang */
.footer,
.header {
  font-family: "Times New Roman", Times, serif;
  font-size: 3px;
}
/* thanhvienlop.html */

.title1 {
  font-family: "Times New Roman", serif;
  color: rgb(44, 105, 220);
  font-size: 20px;
  font-weight: bolder;
}

.title2 {
  font-family: "Times New Roman", serif;
  color: rgb(36, 93, 199);
  font-size: 30px;
  font-weight: bolder;
  text-align: center;
}

.title3 {
  font-family: "Times New Roman", Times, serif;
  color: rgb(36, 93, 199);
  font-size: 17px;
}
table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fcfab3;
  color: #000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

th,
td {
  border: 1px solid #0288d1;
  padding: 12px 16px;
}

th {
  background-color: #0288d1;
  color: white;
  text-align: center;
}

td:nth-child(1) {
  text-align: left;
}

td:nth-child(2) {
  text-align: left;
}

td:nth-child(4),
td:nth-child(3),
td:nth-child(5) {
  text-align: center;
}

tr:hover {
  background-color: #81d4fa;
}

h2 {
  text-align: center;
  color: #01579b;
}
/* Chân trang */
.footer {
  background: #4f4444;
  padding: 40px 100px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-logo img {
  width: 220px;
  height: 250px;
}
.footer-about h3 {
  font-size: 22px;
  font-weight: bold;
  color: white;
}

.footer-about p {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc; /* màu xám nhạt dễ đọc hơn trên nền đen */
}

.footer-about h3,
.footer-social h3 {
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 15px;
}
.footer-about a {
  color: #4acaff;
  text-decoration: none;
}
.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-social a {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  font-size: 18px;
  transition: 0.3s;
}
.footer-social a:hover {
  background: #4acaff;
  color: black;
}
.footer-bottom {
  background: #e7e3e3;
  text-align: center;
  padding: 10px;
  font-size: 20px;
  border-top: 1px solid #333;
}
.footer-bottom a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
