/* Feedback page styling */
:root {
  --accent: #0074d9;
  --bg: #eeece4;
  --success: #388e3c;
  --error: #d32f2f;
  --shadow: rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background-color: var(--bg);
}

/* Navigation bar */
.navbar {
  width: 100%;
  padding: 20px 0px;
  display: flex;
  justify-content: flex-end;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: -10px;
  z-index: 100;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 5px;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: #7c7c7c;
  font-size: 18px;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #000000;
}

/* Dropdown menu styling */
.dropdown {
  position: relative;
}

.dropdown-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  margin: 0;
  min-width: 150px;
  display: none;
  z-index: 101;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: #7c7c7c;
  font-size: 16px;
  transition: background-color 0.2s, color 0.2s;
}

.dropdown-menu li a:hover {
  background-color: #f0f0f0;
  color: #000000;
}

/* Page title */
h1 {
  text-align: center;
  margin: 30px 0 20px 0;
  font-size: 48px;
  color: #111;
  padding-top: 60px;
}

/* Main feedback container */
.feedback-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 20px;
  padding-top: 50px;
}

.feedback-box {
  background: white;
  border-radius: 10px;
  box-shadow: 0 6px 20px var(--shadow);
  padding: 40px;
  max-width: 600px;
  width: 100%;
}

.feedback-box h2 {
  margin-top: 0;
  color: #111;
  font-size: 32px;
}

.feedback-box p {
  color: #666;
  font-size: 16px;
  margin-bottom: 20px;
}

/* Feedback form styling */
.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feedback-form label {
  display: block;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}

.feedback-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 16px;
  resize: vertical;
  transition: border-color 0.3s;
}

.feedback-form textarea:focus {
  outline: none;
  border-color: #4a90c8;
  box-shadow: 0 0 0 3px rgba(0, 116, 217, 0.1);
}

/* Submit button */
.submit-btn {
  background-color: #4a90c8;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #005fa3;
}

.submit-btn:active {
  filter: brightness(0.95);
}

/* Feedback message */
.feedback-message {
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
}

/* Responsive design */
@media (max-width: 600px) {
  h1 {
    font-size: 36px;
    padding-top: 50px;
  }

  .feedback-box {
    padding: 30px 20px;
  }

  .feedback-box h2 {
    font-size: 24px;
  }

  .nav-links {
    gap: 15px;
  }

  .nav-links li a {
    font-size: 16px;
  }
}
