/* Make Top Interview Books and Behavioral Questions Guide buttons text white */
.books-btn, .behavioral-btn {
  color: #fff !important;
}
/* Synced from root style.css for affiliate button styles */

.premium-modal-fun h2 {
  font-size: 1.5em;
  color: #ff8800;
  margin-bottom: 10px;
}
.premium-modal-fun label {
  font-weight: bold;
  margin-top: 10px;
  display: inline-block;
  color: #0078d7;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
}
.premium-modal-fun input[type="email"],
.premium-modal-fun input[type="text"],
.premium-modal-fun textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 14px;
  border: 1.5px solid #b3d8ff;
  border-radius: 6px;
  font-size: 1.08em;
  background: #f4fbff;
  transition: border 0.2s;
}
.premium-modal-fun input[type="email"]:focus,
.premium-modal-fun input[type="text"]:focus,
.premium-modal-fun textarea:focus {
  border: 1.5px solid #0078d7;
  outline: none;
  background: #eaf6ff;
}
.premium-modal-fun button[type="submit"] {
  background: linear-gradient(90deg, #ffd966 60%, #ffbe0b 100%);
  color: #222;
  border: none;
  border-radius: 22px;
  padding: 12px 0;
  font-size: 1.15em;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  transition: background 0.2s;
}
.premium-modal-fun button[type="submit"]:hover {
  background: #ffe599;
}
/* Premium Info Box and Modal */
.premium-info-box {
  background: #eaf6ff;
  border: 1.5px solid #b3d8ff;
  border-radius: 8px;
  padding: 18px 18px 12px 18px;
  margin: 18px 0 0 0;
  font-size: 1.08em;
  color: #222;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  text-align: center;
}
.premium-waitlist-btn {
  background: #ffd966;
  color: #222;
  border: none;
  border-radius: 22px;
  padding: 10px 28px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 10px;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  transition: background 0.2s;
}
.premium-waitlist-btn:hover {
  background: #ffe599;
}
.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.25);
}
.modal.hidden {
  display: none;
}
.modal-content {
  background: #fff;
  padding: 32px 24px 24px 24px;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  min-width: 320px;
  max-width: 95vw;
  text-align: left;
  position: relative;
}
.modal-content h2 {
  margin-top: 0;
  color: #0078d7;
}
.modal-content label {
  font-weight: bold;
  display: block;
  margin-bottom: 4px;
}
.modal-content input[type="email"],
.modal-content input[type="text"],
.modal-content textarea {
  width: 100%;
  padding: 7px;
  margin-bottom: 12px;
  border: 1px solid #b3d8ff;
  border-radius: 4px;
  font-size: 1em;
}
.modal-content button[type="submit"] {
  background: #ffd966;
  color: #222;
  border: none;
  border-radius: 22px;
  padding: 10px 28px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  transition: background 0.2s;
}
.modal-content button[type="submit"]:hover {
  background: #ffe599;
}
.close {
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 2em;
  color: #888;
  cursor: pointer;
}
body {
  font-family: Arial, sans-serif;
  margin: 20px;
  background-color: #f9f9f9;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

h1 {
  color: #0078d7;
}

.settings, #interview-section, #dashboard {
  margin-top: 20px;
}

label {
  display: inline-block;
  width: 140px;
  font-weight: bold;
}

select, textarea {
  width: 250px;
  padding: 5px;
  margin-bottom: 10px;
}

textarea {
  height: 100px;
  resize: vertical;
}

button {
  margin: 5px 5px 5px 0;
  padding: 10px 15px;
  background-color: #0078d7;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 3px;
}

button:hover {
  background-color: #005fa3;
}

.hidden {
  display: none;
}

.question-box {
  background-color: white;
  border: 1px solid #ddd;
  padding: 20px;
  font-size: 18px;
  min-height: 80px;
  margin-bottom: 10px;
}

#answers div {
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  margin-top: 10px;
}

#timer {
  font-weight: bold;
  margin-bottom: 10px;
}

.copyright {
  font-size: 0.9em;
  color: #777;
}