/* Admin Panel Styles */
body {
  background: #0a0f1e;
  color: #ffffff;
  min-height: 100vh;
}

/* PIN Screen */
.pin-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0a0f1e;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.pin-container {
  text-align: center;
  max-width: 400px;
  width: 90%;
  padding: 48px;
  background: rgba(26, 35, 50, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.pin-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
  display: block;
}

.pin-container h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.pin-container p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 32px 0;
}

.pin-input-container {
  margin-bottom: 24px;
}

.pin-input {
  width: 200px;
  padding: 20px;
  font-size: 32px;
  text-align: center;
  letter-spacing: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.pin-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 191, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.1);
}

.pin-error {
  color: #ff4757;
  font-size: 14px;
  margin-top: 16px;
  min-height: 20px;
}

/* Developer Info */
.pin-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.developer-info {
  text-align: center;
}

.developer-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 12px;
}

.developer-brand {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.developer-brand:hover {
  transform: scale(1.05);
}

.developer-logo {
  display: block;
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(45deg, #00bfff, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.developer-tagline {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.developer-contacts {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 16px;
}

.developer-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.developer-link:hover {
  color: var(--brand-light);
  transform: translateY(-2px);
}

.developer-link svg {
  opacity: 0.7;
}

/* Admin Header */
.admin-header {
  background: rgba(26, 35, 50, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.admin-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Admin Main */
.admin-main {
  padding: 40px 24px;
}

.admin-container {
  max-width: 1200px;
  margin: 0 auto;
}

.admin-container h1 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 40px 0;
}

/* Tabs */
.admin-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-tab {
  padding: 16px 32px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.admin-tab:hover {
  color: rgba(255, 255, 255, 0.9);
}

.admin-tab.active {
  color: #ffffff;
}

.admin-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-brand);
}

.admin-tab-content {
  display: none;
}

.admin-tab-content.active {
  display: block;
}

/* Admin Section */
.admin-section {
  background: rgba(26, 35, 50, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
}

.admin-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.admin-section h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.admin-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Countries Grid */
.admin-countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.admin-country-card {
  background: #1a2332;
  border: 1px solid #2c3e50;
  border-radius: 8px;
  padding: 20px;
}

.country-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.country-flag {
  font-size: 24px;
}

.country-header h3 {
  margin: 0;
  color: #fff;
}

.country-info p {
  margin: 8px 0;
  color: #bdc3c7;
}

.country-features {
  margin: 15px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.feature-tag {
  background: #3498db;
  color: white;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
}

.country-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.admin-country-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}

.admin-country-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 191, 255, 0.3);
}

.admin-country-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.admin-country-flag {
  font-size: 32px;
  margin-right: 12px;
}

.admin-country-name {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
}

.admin-country-actions {
  display: flex;
  gap: 8px;
}

.admin-country-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.admin-country-features {
  margin: 12px 0 0 0;
  padding-left: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* Admin Table */
.admin-table-container {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-table th {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.03);
}

.admin-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

/* Table scrolling */
.tab-content {
  max-height: calc(100vh - 300px);
  overflow-y: auto;
}

.admin-table-container {
  max-height: 600px;
  overflow-y: auto;
  margin-bottom: 20px;
}

.admin-table thead {
  position: sticky;
  top: 0;
  background: #0f172a;
  z-index: 10;
}

/* Settings */
.settings-group {
  margin-bottom: 48px;
}

.settings-group h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 24px 0;
}

.setting-item {
  margin-bottom: 24px;
}

.setting-item label {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
}

.setting-controls {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.setting-controls input {
  flex: 1;
  max-width: 300px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
}

.warning-text {
  color: #ff4757;
  margin: 0 0 16px 0;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none; /* По умолчанию скрыто */
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}

.modal-content {
  background: #1a2332;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 32px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.modal-body {
  padding: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 191, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.1);
}

.modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 32px;
}

/* Buttons */
.btn--danger {
  background: #ff4757;
  color: #ffffff;
}

.btn--danger:hover {
  background: #ff3838;
  transform: translateY(-2px);
}

.icon-btn {
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.icon-btn.danger {
  color: #ff4757;
  border-color: rgba(255, 71, 87, 0.3);
}

.icon-btn.danger:hover {
  background: rgba(255, 71, 87, 0.1);
  border-color: rgba(255, 71, 87, 0.5);
}

/* Articles Tab */
.admin-articles-info {
  background: rgba(0, 191, 255, 0.05);
  border: 1px solid rgba(0, 191, 255, 0.2);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}

.admin-articles-info p {
  margin: 0 0 8px 0;
  color: rgba(255, 255, 255, 0.8);
}

.admin-articles-info code {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  color: var(--brand-light);
}

.admin-articles-list {
  margin-bottom: 32px;
}

.admin-articles-list h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 24px 0;
  color: #ffffff;
}

.admin-articles-note {
  background: rgba(255, 184, 0, 0.05);
  border: 1px solid rgba(255, 184, 0, 0.2);
  border-radius: 12px;
  padding: 24px;
}

.admin-articles-note h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: #ffffff;
}

.admin-articles-note ol {
  margin: 0 0 16px 0;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.8);
}

.admin-articles-note li {
  margin-bottom: 8px;
}

.btn--sm {
  padding: 6px 16px;
  font-size: 14px;
}

/* Audit Tab */
.admin-section-info {
  background: rgba(123, 97, 255, 0.05);
  border: 1px solid rgba(123, 97, 255, 0.2);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}

.admin-section-info p {
  margin: 0 0 8px 0;
  color: rgba(255, 255, 255, 0.8);
}

.admin-section-info code {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  color: var(--brand-secondary);
}

.admin-audit-list {
  margin-bottom: 32px;
}

.admin-audit-list h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 24px 0;
  color: #ffffff;
}

.admin-audit-note {
  background: rgba(255, 184, 0, 0.05);
  border: 1px solid rgba(255, 184, 0, 0.2);
  border-radius: 12px;
  padding: 24px;
}

.admin-audit-note h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: #ffffff;
}

.admin-audit-note ol {
  margin: 0 0 16px 0;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.8);
}

.admin-audit-note li {
  margin-bottom: 8px;
}

/* Other Services Tab */
.admin-kik-editor {
  background: rgba(26, 35, 50, 0.6);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
}

.admin-kik-editor p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 24px 0;
}

.admin-kik-sections {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-kik-sections h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
}

.admin-kik-sections ul {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 8px;
}

.admin-kik-sections li {
  color: rgba(255, 255, 255, 0.8);
}

.admin-kik-sections .muted {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.admin-other-services {
  background: rgba(123, 97, 255, 0.05);
  border: 1px solid rgba(123, 97, 255, 0.2);
  border-radius: 12px;
  padding: 24px;
}

.admin-other-services h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.admin-other-services p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 16px 0;
}

.table-placeholder td {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.admin-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 14px 20px;
  border-radius: 10px;
  background: rgba(40, 167, 69, 0.9);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(40, 167, 69, 0.25);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10000;
}

.admin-toast--error {
  background: rgba(220, 53, 69, 0.9);
  box-shadow: 0 12px 30px rgba(220, 53, 69, 0.25);
}

.admin-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.form-group--double {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-group--double > div {
  flex: 1 1 220px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--brand-primary);
}

textarea.form-control {
  resize: vertical;
  min-height: 80px;
}

/* Showcase Admin */
.showcase-admin-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.showcase-admin-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.showcase-admin-image {
  width: 150px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-section);
}

.showcase-admin-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-admin-content {
  flex: 1;
}

.showcase-admin-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.showcase-admin-desc {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 8px;
}

.showcase-admin-link {
  color: var(--brand-light);
  font-size: 13px;
  text-decoration: none;
}

.showcase-admin-actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

/* Developer Card in Settings */
.developer-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  margin-top: 20px;
}

.developer-card-header {
  text-align: center;
  margin-bottom: 24px;
}

.developer-card-logo {
  display: block;
  font-size: 42px;
  font-weight: 900;
  background: linear-gradient(45deg, #00bfff, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.developer-card-badge {
  display: inline-block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
}

.developer-card-desc {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 24px 0;
  font-size: 15px;
}

.developer-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--brand-light);
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.developer-card-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
}

.developer-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.developer-card-link:hover {
  background: rgba(0, 191, 255, 0.1);
  border-color: rgba(0, 191, 255, 0.3);
  transform: translateY(-2px);
}

.developer-card-footer {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  margin: 0;
  letter-spacing: 1px;
}

/* Article Editor Styles */
.modal-content--large {
  max-width: 1000px;
  width: 90%;
}

.editor-toolbar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px 8px 0 0;
  margin-bottom: -1px;
}

.editor-btn {
  padding: 8px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  font-weight: 600;
}

.editor-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.editor-btn:active,
.editor-btn.active {
  background: rgba(0, 191, 255, 0.1);
  border-color: rgba(0, 191, 255, 0.3);
  color: var(--brand-light);
}

.editor-separator {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 8px;
}

.article-editor {
  min-height: 400px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 8px 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
  overflow-y: auto;
  max-height: 500px;
}

.article-editor:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 191, 255, 0.3);
}

.article-editor h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 24px 0 16px;
  color: #ffffff;
}

.article-editor h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 20px 0 12px;
  color: #ffffff;
}

.article-editor p {
  margin: 0 0 16px;
}

.article-editor ul,
.article-editor ol {
  margin: 0 0 16px;
  padding-left: 32px;
}

.article-editor li {
  margin-bottom: 8px;
}

.article-editor a {
  color: var(--brand-light);
  text-decoration: underline;
}

.article-preview {
  min-height: 200px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  overflow-y: auto;
  max-height: 300px;
}

/* Responsive */
@media (max-width: 768px) {
  .admin-section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .admin-actions {
    width: 100%;
  }
  
  .admin-countries-grid {
    grid-template-columns: 1fr;
  }
  
  .setting-controls {
    flex-direction: column;
    align-items: stretch;
  }
  
  .setting-controls input {
    max-width: 100%;
  }
  
  .modal-actions {
    flex-direction: column;
  }
}
