/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#admissions-button {
  font-family: 'Segoe UI', sans-serif;
  font-size: 1.2rem; /* optional: size tweak */
  font-weight: 600;   /* optional: boldness */
  letter-spacing: 1px; /* optional: spacing */
  text-transform: uppercase; /* optional: all caps */
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f8f8;
  color: #1b1b1b;
  line-height: 1.6;
  padding: 20px;
}

/* Container */
.container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
  text-align: center;
  margin-bottom: 30px;
}

.logo {
  width: 120px;
  margin-bottom: 10px;
}

h1 {
  font-size: 28px;
  color: #8a1538;
}

h2 {
  font-size: 18px;
  color: #666;
  margin-top: 5px;
}

/* Status Box */
.status-box {
  border-left: 6px solid #28a745;
  padding: 20px;
  background-color: #eafaf1;
  margin-bottom: 20px;
  border-radius: 8px;
}

.status-label {
  font-size: 16px;
  color: #555;
}

.status-value {
  font-size: 24px;
  font-weight: bold;
  color: #28a745;
}

/* Congratulations */
.congrats h3 {
  font-size: 22px;
  color: #222;
  margin-bottom: 10px;
}

.congrats p {
  margin-bottom: 12px;
}

/* Highlights */
.highlight-box {
  background-color: #f4f4f4;
  padding: 15px 20px;
  border-left: 6px solid #8a1538;
  margin-top: 30px;
  border-radius: 8px;
}

.highlight-box h4 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #8a1538;
}

.highlight-box ul {
  list-style: disc;
  padding-left: 20px;
}

/* Next Steps */
.next-steps {
  margin-top: 30px;
  padding: 15px 20px;
  border-left: 6px solid #004c93;
  background-color: #eef3f8;
  border-radius: 8px;
}

.next-steps h4 {
  color: #004c93;
  margin-bottom: 10px;
}

.next-steps ul {
  list-style: square;
  padding-left: 20px;
}

/* Footer */
.footer {
  margin-top: 40px;
  text-align: center;
  font-size: 16px;
  color: #444;
}

/* Inbox fake email styles */
.inbox-container {
  max-width: 600px;
  margin: 80px auto;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  padding: 20px;
}

.inbox-container h1 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #5f6368;
}

.email {
  padding: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s, opacity 0.2s;
  border-bottom: 1px solid #dadce0;
  background-color: #fff;
}

.email:hover {
  background-color: #f5f5f5;
  opacity: 0.9;
}

.sender {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a73e8;
}

.subject {
  font-size: 1rem;
  margin: 4px 0;
  color: #202124;
}

.preview {
  font-size: 0.9rem;
  color: #5f6368;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.timestamp {
  font-size: 0.8rem;
  color: #999;
  text-align: right;
}

#full-email {
  max-width: 600px;
  margin: 4rem auto;
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.email-body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

#go-to-portal {
  background: none;
  border: none;
  color: #0066cc;
  text-decoration: underline;
  cursor: pointer;
  font-size: 1rem;
  margin: 1rem 0;
  padding: 0;
}

#go-to-portal:hover {
  opacity: 0.7;
}

body {
  font-family: Arial, sans-serif;
  background: #fff;
  margin: 0;
  padding: 20px;
}

.hidden {
  display: none;
}

/* Inbox Row */
.email-row {
  display: flex;
  flex-direction: column;
  padding: 15px;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.email-row:hover {
  background-color: #f1f3f4;
}

.sender {
  font-weight: bold;
  color: #202124;
}

.subject {
  font-size: 16px;
  color: #202124;
}

.snippet {
  color: #5f6368;
}

.date {
  align-self: flex-end;
  color: #5f6368;
}

/* Email Content */
.email-header {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.email-body {
  line-height: 2;
}

.portal-link {
  display: inline-block;
  padding: 10px 15px;
  background-color: #8a1538;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.portal-link:hover {
  background-color: #a41c42;
}