/* style/cockfighting.css */
:root {
  --primary-color: #017439; /* Main brand green */
  --secondary-color: #FFFFFF; /* White */
  --text-dark: #333333;
  --text-light: #ffffff;
  --button-register-bg: #C30808; /* Custom red for register */
  --button-login-bg: #C30808; /* Custom red for login */
  --button-text-yellow: #FFFF00; /* Custom yellow for register/login text */
  --border-light: #e0e0e0;
  --background-light: #f9f9f9;
}

.page-cockfighting {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light background */
  background-color: var(--secondary-color); /* Body background is white */
}