/* Logout button styling */
#logout-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  cursor: pointer;
  padding: 4px 12px;
  margin-left: 8px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

#logout-btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

#logout-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Password form improvements */
#mkdocs-content-password {
  font-size: 1rem;
  padding: 12px 16px;
  border: 2px solid #3f51b5;
  border-radius: 8px;
  width: 320px;
  max-width: 100%;
  outline: none;
  transition: border-color 0.2s;
}

#mkdocs-content-password:focus {
  border-color: #1a237e;
  box-shadow: 0 0 0 3px rgba(63, 81, 181, 0.15);
}

/* Unlock button styling */
#mkdocs-decrypt-button {
  background-color: #3f51b5;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-left: 8px;
  transition: background-color 0.2s;
}

#mkdocs-decrypt-button:hover {
  background-color: #1a237e;
}

/* Responsive: hide text on mobile, show icon only */
@media (max-width: 768px) {
  .logout-text {
    display: none;
  }
  #logout-btn {
    padding: 4px 8px;
    margin-left: 4px;
  }
}
