/* Modern Platform Control Side Panel - 2026 Design */

.rm-platform-side-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.rm-platform-side-panel.collapsed {
  width: 55px !important;
}

.rm-platform-side-panel.expanded {
  width: 270px !important;
}

/* Panel Header */
.rm-platform-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
  min-height: 72px;
}

.rm-platform-panel-title {
  font-size: 15px !important;
  text-align: center;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  letter-spacing: -0.02em;
  animation: rm-platform-fadeInLeft 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.rm-platform-toggle-button {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #374151;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.rm-platform-toggle-button:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.12);
  transform: scale(1.05);
}

.rm-platform-toggle-button:active {
  transform: scale(0.95);
}

.rm-platform-toggle-button i {
  font-size: 18px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Master Controls */
.rm-platform-master-controls {
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  animation: rm-platform-fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s backwards;
}

.rm-platform-master-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rm-platform-master-title i {
  font-size: 20px;
  color: #3b82f6;
}

.rm-platform-controls-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rm-platform-control-button {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.rm-platform-control-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 60%);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rm-platform-control-button:hover::before {
  opacity: 1;
}

.rm-platform-control-button.active {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.rm-platform-control-button.inactive {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border-color: rgba(239, 68, 68, 0.2);
}

.rm-platform-control-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.rm-platform-control-button:active {
  transform: translateY(0);
}

.rm-platform-control-button i {
  font-size: 18px;
}

/* Platform List */
.rm-platform-list {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.rm-platform-list::-webkit-scrollbar {
  width: 6px;
}

.rm-platform-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.04);
  border-radius: 10px;
}

.rm-platform-list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.rm-platform-list::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.25);
}

/* Platform Item */
.rm-platform-item {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: rm-platform-fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.rm-platform-item:nth-child(1) { animation-delay: 0.05s; }
.rm-platform-item:nth-child(2) { animation-delay: 0.1s; }
.rm-platform-item:nth-child(3) { animation-delay: 0.15s; }
.rm-platform-item:nth-child(4) { animation-delay: 0.2s; }
.rm-platform-item:nth-child(5) { animation-delay: 0.25s; }

.rm-platform-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.1);
}

.rm-platform-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.rm-platform-item-name {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.rm-platform-item-name i {
  font-size: 20px;
  color: #3b82f6;
  flex-shrink: 0;
}

.rm-platform-item-name span {
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rm-platform-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.rm-platform-item-controls {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rm-platform-item-controls button {
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rm-platform-item-controls button.active {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.rm-platform-item-controls button.inactive {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border-color: rgba(239, 68, 68, 0.2);
}

.rm-platform-item-controls button.busy {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.rm-platform-item-controls button.available {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border-color: rgba(16, 185, 129, 0.2);
}

.rm-platform-item-controls button:hover {
  transform: scale(1.02);
}

.rm-platform-item-controls button:active {
  transform: scale(0.98);
}

.rm-platform-update-time {
  text-align: center;
  font-size: 13px;
  color: #6b7280;
  padding: 12px;
  margin-top: 8px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 10px;
  font-weight: 500;
}

/* Collapsed State */
.rm-platform-side-panel.collapsed .rm-platform-item {
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rm-platform-side-panel.collapsed .rm-platform-item-name span,
.rm-platform-side-panel.collapsed .rm-platform-logo,
.rm-platform-side-panel.collapsed .rm-platform-item-controls {
  display: none;
}
.rm-platform-side-panel.collapsed > .rm-platform-list {
  display: none;
}

.rm-platform-side-panel.collapsed .rm-platform-item-name i {
  margin: 0;
}

/* Dark Mode Support */
body.rm-dark .rm-platform-side-panel {
  background: rgba(17, 24, 39, 0.95);
  border-left-color: rgba(255, 255, 255, 0.08);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
}

body.rm-dark .rm-platform-panel-header {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.8) 0%, rgba(17, 24, 39, 0.4) 100%);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.rm-dark .rm-platform-panel-title {
  color: #f3f4f6;
}

body.rm-dark .rm-platform-toggle-button {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: #e5e7eb;
}

body.rm-dark .rm-platform-toggle-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

body.rm-dark .rm-platform-master-controls {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.rm-dark .rm-platform-master-title {
  color: #9ca3af;
}

body.rm-dark .rm-platform-control-button.inactive {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
}

body.rm-dark .rm-platform-item {
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(255, 255, 255, 0.08);
}

body.rm-dark .rm-platform-item:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(255, 255, 255, 0.12);
}

body.rm-dark .rm-platform-item-name span {
  color: #f3f4f6;
}

body.rm-dark .rm-platform-item-controls button.inactive {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
}

body.rm-dark .rm-platform-item-controls button.available {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
}

body.rm-dark .rm-platform-update-time {
  background: rgba(255, 255, 255, 0.04);
  color: #9ca3af;
}

body.rm-dark .rm-platform-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}

body.rm-dark .rm-platform-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
}

body.rm-dark .rm-platform-list::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Animations */
@keyframes rm-platform-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes rm-platform-fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rm-platform-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .rm-platform-side-panel.expanded {
    width: 100% !important;
    max-width: 320px;
  }

  .rm-platform-panel-header {
    padding: 16px;
    min-height: 64px;
  }

  .rm-platform-panel-title {
    font-size: 16px;
  }

  .rm-platform-toggle-button {
    width: 36px;
    height: 36px;
  }

  .rm-platform-toggle-button i {
    font-size: 16px;
  }

  .rm-platform-master-controls {
    padding: 16px;
  }

  .rm-platform-control-button {
    padding: 12px 16px;
    font-size: 14px;
  }

  .rm-platform-list {
    padding: 16px;
  }

  .rm-platform-item {
    padding: 14px;
  }

  .rm-platform-logo {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .rm-platform-side-panel.expanded {
    width: 100% !important;
    max-width: 280px;
  }

  .rm-platform-item {
    padding: 12px;
  }

  .rm-platform-item-controls button {
    padding: 8px 12px;
    font-size: 13px;
  }
}

/* Accessibility */
.rm-platform-toggle-button:focus-visible,
.rm-platform-control-button:focus-visible,
.rm-platform-item-controls button:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .rm-platform-side-panel,
  .rm-platform-toggle-button,
  .rm-platform-control-button,
  .rm-platform-item,
  .rm-platform-item-controls button {
    animation: none !important;
    transition: none !important;
  }
}

            .automation-settings-modern {
              display: flex;
              flex-direction: column;
              gap: 20px;
              padding: 20px 0;
            }

            .automation-card {
              background: rgba(255, 255, 255, 0.95);
              backdrop-filter: blur(20px);
              border-radius: 20px;
              padding: 24px;
              border: 1px solid rgba(0, 0, 0, 0.06);
              box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
              transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .automation-card:hover {
              transform: translateY(-2px);
              box-shadow: 
                0 12px 40px rgba(0, 0, 0, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            }

            .automation-card-header {
              display: flex;
              align-items: center;
              gap: 16px;
              margin-bottom: 20px;
            }

            .automation-card-icon {
              width: 56px;
              height: 56px;
              border-radius: 16px;
              display: flex;
              align-items: center;
              justify-content: center;
              color: white;
              font-size: 24px;
              box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
              flex-shrink: 0;
            }

            .automation-card-title {
              flex: 1;
            }

            .automation-card-title h4 {
              margin: 0;
              font-size: 18px;
              font-weight: 700;
              color: #1f2937;
              letter-spacing: -0.02em;
            }

            .automation-card-title p {
              margin: 4px 0 0 0;
              font-size: 14px;
              color: #6b7280;
              display: none;
            }

            .automation-card-body {
              display: flex;
              flex-direction: column;
              gap: 16px;
            }

            .modern-select-wrapper {
              position: relative;
            }

            .modern-select {
              width: 100%;
              padding: 14px 48px 14px 18px;
              border: 2px solid rgba(0, 0, 0, 0.08);
              border-radius: 12px;
              font-size: 16px;
              font-weight: 600;
              color: #1f2937;
              background: white;
              cursor: pointer;
              appearance: none;
              transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
              outline: none;
            }

            .modern-select:hover {
              border-color: rgba(0, 0, 0, 0.15);
              background: rgba(0, 0, 0, 0.02);
            }

            .modern-select:focus {
              border-color: #3b82f6;
              background: white;
              box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
            }

            .select-arrow {
              position: absolute;
              right: 18px;
              top: 50%;
              transform: translateY(-50%);
              pointer-events: none;
              color: #6b7280;
              transition: color 0.2s;
            }

            .modern-select:hover + .select-arrow {
              color: #1f2937;
            }

            .payment-type-toggles {
              display: flex;
              gap: 12px;
            }

            .modern-toggle-label {
              flex: 1;
              display: flex;
              align-items: center;
              gap: 12px;
              padding: 14px 16px;
              background: rgba(0, 0, 0, 0.03);
              border: 2px solid transparent;
              border-radius: 12px;
              cursor: pointer;
              transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
              position: relative;
            }

            .modern-toggle-label:hover {
              background: rgba(0, 0, 0, 0.05);
              border-color: rgba(0, 0, 0, 0.08);
            }

            .modern-toggle-input {
              display: none;
            }

            .modern-toggle-switch {
              width: 48px;
              height: 26px;
              background: #d1d5db;
              border-radius: 13px;
              position: relative;
              transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
              flex-shrink: 0;
            }

            .modern-toggle-switch::before {
              content: '';
              position: absolute;
              width: 20px;
              height: 20px;
              background: white;
              border-radius: 50%;
              top: 3px;
              left: 3px;
              transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
              box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            }

            .modern-toggle-input:checked + .modern-toggle-switch {
              background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            }

            .modern-toggle-input:checked + .modern-toggle-switch::before {
              transform: translateX(22px);
            }

            .modern-toggle-text {
              display: flex;
              align-items: center;
              gap: 8px;
              font-size: 15px;
              font-weight: 600;
              color: #374151;
              flex: 1;
            }

            .modern-toggle-text i {
              font-size: 18px;
              color: #6b7280;
            }

            .yes-no-toggle {
              display: flex;
              gap: 12px;
              padding: 6px;
              background: rgba(0, 0, 0, 0.04);
              border-radius: 14px;
            }

            .yes-no-option {
              flex: 1;
              cursor: pointer;
            }

            .yes-no-option input {
              display: none;
            }

            .yes-no-label {
              display: flex;
              align-items: center;
              justify-content: center;
              gap: 8px;
              padding: 14px 20px;
              background: transparent;
              border-radius: 10px;
              font-size: 16px;
              font-weight: 600;
              color: #6b7280;
              transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .yes-no-option.active .yes-no-label {
              background: white;
              color: #059669;
              box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            }

            .yes-no-option:hover .yes-no-label {
              color: #374151;
            }

            .yes-no-option.active:hover .yes-no-label {
              color: #047857;
            }

            /* Responsive Design */
            @media (max-width: 768px) {
              .automation-settings-modern {
                gap: 16px;
                padding: 16px 0;
              }

              .automation-card {
                padding: 20px;
                border-radius: 16px;
              }

              .automation-card-icon {
                width: 48px;
                height: 48px;
                font-size: 20px;
                border-radius: 12px;
              }

              .automation-card-title h4 {
                font-size: 16px;
              }

              .modern-select {
                padding: 12px 42px 12px 16px;
                font-size: 15px;
              }

              .payment-type-toggles {
                flex-direction: column;
                gap: 10px;
              }

              .modern-toggle-label {
                padding: 12px 14px;
              }

              .modern-toggle-switch {
                width: 44px;
                height: 24px;
              }

              .modern-toggle-switch::before {
                width: 18px;
                height: 18px;
              }

              .modern-toggle-input:checked + .modern-toggle-switch::before {
                transform: translateX(20px);
              }

              .modern-toggle-text {
                font-size: 14px;
              }

              .yes-no-label {
                padding: 12px 16px;
                font-size: 15px;
              }
            }

            @media (max-width: 480px) {
              .automation-card {
                padding: 16px;
              }

              .automation-card-header {
                gap: 12px;
              }

              .automation-card-icon {
                width: 44px;
                height: 44px;
                font-size: 18px;
              }

              .automation-card-title h4 {
                font-size: 15px;
              }

              .modern-select {
                font-size: 14px;
                padding: 11px 38px 11px 14px;
              }

              .yes-no-toggle {
                padding: 4px;
              }

              .yes-no-label {
                padding: 10px 12px;
                font-size: 14px;
                gap: 6px;
              }

              .yes-no-label i {
                font-size: 14px;
              }
            }

            /* Dark Mode Support */
            body.rm-dark .automation-card {
              background: rgba(30, 30, 30, 0.95);
              border-color: rgba(255, 255, 255, 0.08);
              box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            }

            body.rm-dark .automation-card:hover {
              box-shadow: 
                0 12px 40px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
              border-color: rgba(255, 255, 255, 0.12);
            }

            body.rm-dark .automation-card-title h4 {
              color: #f3f4f6;
            }

            body.rm-dark .automation-card-title p {
              color: #9ca3af;
            }

            body.rm-dark .modern-select {
              background: rgba(255, 255, 255, 0.05);
              border-color: rgba(255, 255, 255, 0.1);
              color: #f3f4f6;
            }

            body.rm-dark .modern-select:hover {
              background: rgba(255, 255, 255, 0.08);
              border-color: rgba(255, 255, 255, 0.15);
            }

            body.rm-dark .modern-select:focus {
              background: rgba(255, 255, 255, 0.1);
              border-color: #60a5fa;
              box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.2);
            }

            body.rm-dark .modern-select option {
              background: #1f2937;
              color: #f3f4f6;
            }

            body.rm-dark .select-arrow {
              color: #9ca3af;
            }

            body.rm-dark .modern-select:hover + .select-arrow {
              color: #f3f4f6;
            }

            body.rm-dark .modern-toggle-label {
              background: rgba(255, 255, 255, 0.05);
            }

            body.rm-dark .modern-toggle-label:hover {
              background: rgba(255, 255, 255, 0.08);
              border-color: rgba(255, 255, 255, 0.12);
            }

            body.rm-dark .modern-toggle-switch {
              background: rgba(255, 255, 255, 0.2);
            }

            body.rm-dark .modern-toggle-switch::before {
              background: #374151;
            }

            body.rm-dark .modern-toggle-input:checked + .modern-toggle-switch::before {
              background: white;
            }

            body.rm-dark .modern-toggle-text {
              color: #e5e7eb;
            }

            body.rm-dark .modern-toggle-text i {
              color: #9ca3af;
            }

            body.rm-dark .yes-no-toggle {
              background: rgba(255, 255, 255, 0.05);
            }

            body.rm-dark .yes-no-label {
              color: #9ca3af;
            }

            body.rm-dark .yes-no-option.active .yes-no-label {
              background: rgba(255, 255, 255, 0.1);
              color: #34d399;
              box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            }

            body.rm-dark .yes-no-option:hover .yes-no-label {
              color: #d1d5db;
            }

            body.rm-dark .yes-no-option.active:hover .yes-no-label {
              color: #10b981;
            }
          
/* Mobile Accordion Panel */
.rm-platform-mobile-panel {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.95) 100%);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
}

body.rm-dark .rm-platform-mobile-panel {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
}

.rm-platform-mobile-panel .rm-platform-master-controls {
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

body.rm-dark .rm-platform-mobile-panel .rm-platform-master-controls {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.rm-platform-mobile-panel .rm-platform-list {
  padding: 20px;
  max-height: 500px;
  overflow-y: auto;
}

.rm-platform-mobile-panel .rm-platform-item {
  margin-bottom: 16px;
}

.rm-platform-mobile-panel .rm-platform-item:last-child {
  margin-bottom: 0;
}
