/* Phong cách tổng thể */
body {
  font-family: 'Roboto', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(to bottom right, #83a4d4, #b6fbff);
  color: #333;
}

.container {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  
  width: 100%;
  text-align: center;
  max-width: 1200px;
    margin: auto;
}

h2 {
  color: #333;
}

/* Thẻ hiển thị từ vựng */
.word-card {
  font-size: 24px;
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
}

.word-card b {
  display: block;
  font-size: 36px;
  margin-bottom: 10px;
}

.word-card img {  
  height: auto;
  margin-bottom: 10px;
  border-radius: 5px; /* Điều chỉnh giá trị này để thay đổi độ bo tròn */
}


.word-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.word-card b {
  font-size: 32px;
  color: #007bff;
}

.word-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Nút chức năng */
.btn {
  background-color: #007bff;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 10px 0;
}

.btn:hover {
  background-color: #0056b3;
}

.btn i {
  margin-right: 8px;
}

/* Bảng lịch sử */
#historyTable {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 14px;
}

#historyTable th,
#historyTable td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
}

#historyTable tr:nth-child(even) {
  background-color: #f7f7f7;
}

#historyTable tr:hover {
  background-color: #e0f7fa;
}

#historyTable th {
  background-color: #00796b;
  color: white;
  padding-top: 14px;
  padding-bottom: 14px;
}

/* Giao diện học phiên mới */
.newSession {
  border-bottom: 2px solid #007bff;
  font-weight: bold;
}