/* General Page Styles */
body {
  background-color: #ffffff;
  color: #333333;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Header */
header {
  background-color: #f8f8f8;
  border-bottom: 1px solid #e0e0e0;
  padding: 20px;
  text-align: center;
}
header h1 {
  color: #222222;
  font-size: 2rem;
  margin: 0;
}

/* Navigation */
nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}
nav ul li a {
  color: #555555;
  text-decoration: none;
  font-size: 1rem;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
nav ul li a:hover {
  background-color: #e0e0e0;
  color: #000000;
}

/* Buttons */
button, .btn {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  color: #333333;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
button:hover, .btn:hover {
  background-color: #f0f0f0;
  border-color: #bbbbbb;
}

/* Forms */
input[type="text"], input[type="email"], input[type="password"], textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #dddddd;
  border-radius: 5px;
  margin-bottom: 15px;
  font-size: 1rem;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, textarea:focus {
  border-color: #aaaaaa;
  outline: none;
  background-color: #fafafa;
}

/* Tickets Section */
.ticket-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}
.ticket {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ticket:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.ticket h2 {
  color: #222222;
  margin-bottom: 10px;
  font-size: 1.5rem;
}
.ticket p {
  color: #666666;
  font-size: 1rem;
  margin: 0;
}

/* Footer */
footer {
  background-color: #f8f8f8;
  border-top: 1px solid #e0e0e0;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
}
footer p {
  color: #888888;
  font-size: 0.9rem;
}
footer a {
  color: #555555;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer a:hover {
  color: #222222;
}
