/* Updated CSS for 55 Club Website */

/* Global Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f7f7f7;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: #333;
  color: #fff;
  padding: 15px 20px;
  text-align: center;
}
.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.site-header h1 {
  margin: 0;
  font-size: 1.8em;
}
.header-buttons {
  margin-top: 10px;
}
.header-buttons a.btn {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  margin: 0 5px;
  display: inline-block;
}
.header-buttons a.login-btn {
  background: #007BFF;
  color: #fff;
}
.header-buttons a.register-btn {
  background: #28a745;
  color: #fff;
}

/* Main Content */
main {
  padding: 20px;
  background: #fff;
  max-width: 1000px;
  margin: 20px auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
main h1, main h2 {
  color: #222;
}
main p {
  margin-bottom: 15px;
}
section {
  margin-bottom: 25px;
}
.seo-content {
  background: #e9ecef;
  padding: 15px;
  border-radius: 4px;
  margin-top: 20px;
}

/* Footer Styles */
footer {
  background: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}
.footer-content {
  max-width: 1000px;
  margin: 0 auto;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
  font-size: 0.9em;
}
.footer-links a:hover {
  text-decoration: underline;
}

/* Form Styles */
form {
  margin-top: 20px;
}
form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
form input[type="text"],
form input[type="email"],
form input[type="password"],
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
form button {
  background: #007BFF;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
form button:hover {
  background: #0056b3;
}
