/* tfv_style.css */

/* Common styles for all devices */
input[name=honeyspot1],
input[name=honeyspot2] {
    visibility: hidden;
    font-size: 15px; /* Adjust font size for smaller screens */
}

/* Styles for smartphones (up to 576px) */
@media (max-width: 576px) {
    /* Additional styles specific to smartphones */
}

/* Styles for tablets (between 577px and 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    /* Additional styles specific to tablets */
}

/* Additional styles from tfv_style.css */
body,
table,
tr,
td {
  font-size: 15px;
  font-family: Arial, sans-serif;
  color: #000033;
}

.resources a {
  font-family: Verdana, sans-serif;
  font-size: 15px;
}

hr {
  color: red;
  height: 7px;
  border: double 2px blue;
}

a:link {
  color: #ff0066;
  text-decoration: none;
}

a:visited {
  color: #cc0099;
  text-decoration: none;
}

a:active {
  color: #8000ff;
  text-decoration: none;
}

a:hover {
  color: #0000ff;
  text-decoration: underline;
}