
.sam-preferences-window {
  max-width: 740px;
  margin: 2rem auto;
  background: rgba(25, 25, 25, 0.85);
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
  padding: 2rem;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.sam-header {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
}
.sam-tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.sam-tab {
  flex: 1;
  background: #2a2a2a;
  border: none;
  padding: 0.75rem;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px 8px 0 0;
  margin: 0 0.25rem;
  transition: background 0.3s ease;
}
.sam-tab.active {
  background: #b620e0;
}
.sam-tab-content {
  display: none;
}
.sam-tab-content.active {
  display: block;
}
.sam-input-block {
  margin-bottom: 1.5rem;
}
.sam-input-block label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.sam-input-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sam-input-row input[type="password"],
.sam-input-row input[type="text"] {
  flex: 1;
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  background: #111;
  color: #fff;
  font-size: 1rem;
  box-shadow: inset 0 0 5px rgba(255,255,255,0.1);
}
.eye-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 1.2rem;
}
.sam-btn {
  background: #b620e0;
  border: none;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
  white-space: nowrap;
}
.sam-btn:hover {
  background: #8e1ac2;
}
.sam-btn.mini {
  padding: 6px 10px;
  font-size: 0.85rem;
  margin-left: 0.25rem;
}
.sam-toggle {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.sam-toggle label {
  font-size: 0.95rem;
  color: #ccc;
}
.sam-toggle input[type="radio"] {
  margin-right: 0.25rem;
}
.sam-storage-tabs {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 0.5rem;
}
.sam-storage-tabs .sam-tab {
  background: #2b2b2b;
  color: #eee;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}
.sam-storage-tabs .sam-tab.active {
  background: #b620e0;
}
.sam-storage-content {
  display: none;
  padding: 1rem;
  margin-top: 1rem;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
}
.sam-storage-content.active {
  display: block;
}
.sam-saved-row {
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: #ccc;
}
.status-pill {
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 8px;
  display: inline-block;
  margin-right: 0.5rem;
}
