﻿/* Import font Roboto từ Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* Reset cơ bản */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Body dark theme */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  padding: 10px;
}



/* Khung chính */
.container {
  max-width: 800px;
  margin: 20px auto;
  background: #1e1e1e;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* Tiêu đề */
h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
}

/* Khối chứa form */
.form-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

/* Input và Select */
.form-container input[type="text"],
.form-container select {
  padding: 10px;
  border: 1px solid #333;
  border-radius: 4px;
  background-color: #2e2e2e;
  color: #e0e0e0;
}

/* Button */
.form-container button {
  padding: 10px 20px;
  background-color: #6200ee;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-container button:hover {
  background-color: #3700b3;
}

/* Vùng hiển thị email */
#emails {
  margin-top: 20px;
}

/* Các mục email */
.email-item {
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #333;
  border-radius: 4px;
  background-color: #2e2e2e;
  white-space: pre-wrap;       /* Giữ nguyên khoảng trắng và xuống dòng */
  word-wrap: break-word;        /* Tự động ngắt dòng khi từ quá dài */
  overflow-wrap: break-word;
}

.email-item p {
  margin: 5px 0;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.email-item div {
  margin-top: 10px;
  line-height: 1.5;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}


.container h2 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #6200ee;  /* Màu chữ tiêu đề */
  /* Nếu muốn canh giữa tiêu đề thì thêm: text-align: center; */
}

.container p {
  margin: 10px 0;
}

.container strong {
  color: #d9534f;  /* Màu đỏ để nhấn mạnh */
}
.email-link {
  color: #bb86fc; /* Màu tím sáng nổi bật trên nền tối */
  text-decoration: underline; /* Gạch chân để dễ nhận biết */
  word-break: break-all; /* Đảm bảo URL dài không tràn ra ngoài */
}

.email-link:hover {
  color: #3700b3; /* Đổi màu khi hover để tăng tương tác */
  cursor: pointer;
}
/* Responsive cho màn hình nhỏ */
@media (max-width: 600px) {
  .form-container {
    flex-direction: column;
    align-items: center;
  }
  .form-container input[type="text"],
  .form-container select,
  .form-container button {
    width: 80%;
    max-width: 300px;
  }
}
