/* styles.css */

/* Body chung */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #f9f9f9;
}

/* Navbar custom */
.navbar-brand {
  font-weight: 600;
  letter-spacing: 1px;
}

/* Footer custom */
footer p {
  margin: 0;
}

/* Form elements */
.form-label {
  font-weight: 500;
}

/* Buttons custom */
.btn-primary {
  background-color: #3c8dbc;
  border-color: #367fa9;
}

.btn-primary:hover {
  background-color: #367fa9;
  border-color: #285e8e;
}

/* Hero section (nếu muốn áp dụng) */
.hero-section {
  background: linear-gradient(135deg, #3c8dbc 0%, #2c3e50 100%);
  color: #fff;
  padding: 3rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

/* Card style (nếu cần) */
.card-custom {
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* v.v... bạn có thể bổ sung thêm theo ý muốn */
