/* ../assets/css/results.css */

/* 1. Base Page Setup */
.results-page {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* Use a very light grey/white to match the header background */
  background: #f8fafc;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* 2. Card Wrapper */
.glass-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  /* Add a subtle background pattern to fill the white space professionally */
  background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
  background-size: 20px 20px;
}

/* 3. The Professional Glass Card */
.results-card {
  width: 100%;
  max-width: 450px;
  /* White-based glass to match the header's clean look */
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  /* Use a border that matches the orange/gold nav bar tone subtly */
  border: 2px solid #f59e0b;
  border-radius: 20px;
  padding: 40px;
  /* Stronger shadow to make it pop against the white background */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* 4. Text and Header Colors */
.header h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #800000; /* Deep Maroon to match your logo/text */
  margin-bottom: 5px;
  text-transform: uppercase;
}

.header p {
  font-size: 0.9rem;
  color: #475569; /* Professional Slate Grey */
  margin-bottom: 30px;
}

/* 5. Input Groups */
.input-group {
  text-align: left;
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #800000; /* Maroon Labels */
  margin-bottom: 8px;
  text-transform: uppercase;
}

.input-group input {
  width: 100%;
  padding: 14px;
  background: #ffffff;
  /* Match the navigation bar color for the input borders */
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  color: #1e293b;
  font-size: 1rem;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.input-group input:focus {
  outline: none;
  border-color: #f59e0b; /* Orange focus to match Nav Bar */
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

/* 6. The Action Button */
.view-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 8px;
  /* Solid Maroon button to match college branding */
  background: #800000;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s ease;
}

.view-btn:hover {
  background: #a80000; /* Lighter maroon on hover */
}

.footer-note {
  margin-top: 25px;
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.4;
}
