/* taskpane.css — thin Outlook-only layer on top of the shared mailhub.css. */

.screen { display: none; }
.screen.active { display: block; }

.mih-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.mih-header h1 { font-size: 16px; font-weight: 600; margin: 0; }

.mih-link {
  color: var(--mih-accent);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 18px;
}

input[type="url"], input[type="password"] {
  width: 100%;
  padding: 8px;
  border: 1px solid var(--mih-border);
  border-radius: var(--mih-radius);
  font: inherit;
  background: #fff;
}
input[type="url"]:focus, input[type="password"]:focus {
  outline: none;
  border-color: var(--mih-accent);
}
