/* Fiesta Theme Base */
body {
  background: linear-gradient(45deg, #ffcc70, #ff6f91, #845ec2);
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Centered container for pages */
.container {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  margin: 20px auto;
  border-radius: 15px;
  width: 90%;
  max-width: 800px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

/* Profile section */
.profile-box {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 10px;
  color: #fff;
}

/* Form inputs and buttons */
input, select, textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0 20px;
  border-radius: 8px;
  border: none;
  font-size: 1em;
}

input[type="submit"],
button {
  background-color: #ff6f91;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

input[type="submit"]:hover,
button:hover {
  background-color: #845ec2;
}

/* Navigation */
.nav a {
  margin: 0 10px;
  text-decoration: none;
  font-size: 1.5em;
  color: #fff;
}

/* Image display */
.viewer img {
  max-width: 300px;
  border: 5px solid white;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* Headings */
h1, h2, h3 {
  color: #fff;
  text-shadow: 1px 1px 3px #000;
}

/* Footer */
footer {
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  opacity: 0.8;
}
