.wlp-entry-method-selection {
  display: grid;
  gap: 15px;
  margin: 20px 0;
}

.wlp-entry-option {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s;
}

.wlp-entry-option:hover,
.wlp-entry-option.selected {
  border-color: #00bfa6;
  background: #f0fff9;
}

.wlp-entry-option h4 {
  margin: 0 0 5px 0;
  color: #000051;
}

.wlp-entry-option p {
  margin: 0;
  color: #666;
}

.wlp-upload-box {
  border: 2px dashed #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  background: #f9f9f9;
}

.wlp-upload-box h4 {
  margin: 0 0 10px 0;
  color: #000051;
}

.wlp-upload-box p {
  margin: 0 0 15px 0;
  color: #666;
  font-size: 14px;
}

.wlp-setting-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  background: #f9f9f9;
}

.wlp-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
}

.wlp-item-header h4 {
  margin: 0;
  color: #000051;
}

.wlp-delete-btn {
  background: #dc3545;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
}

.wlp-field-group {
  margin-bottom: 15px;
}

.wlp-field-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.wlp-field-group input[type="text"],
.wlp-field-group input[type="number"],
.wlp-field-group textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.wlp-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.wlp-field-row > div {
  display: flex;
  flex-direction: column;
}

.wlp-field-row label {
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.wlp-checkbox-list {
  margin-top: 10px;
}

.wlp-checkbox-list label {
  display: flex;
  align-items: center;
  margin: 5px 0;
  cursor: pointer;
}

.wlp-checkbox-list input[type="checkbox"] {
  margin-right: 8px;
}

.wlp-add-btn {
  background: #00bfa6;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 15px;
}

.wlp-add-btn:hover {
  background: #00a891;
}

/* Better Button Styling */
#wlp-select-lenses-btn {
  position: relative;
  z-index: 100 !important;
  cursor: pointer !important;
}

#wlp-button-container {
  position: relative;
  z-index: 50;
}

/* Modal Improvements */
.wlp-modal-content {
  position: relative;
  z-index: 1000000 !important;
}

.wlp-modal-overlay {
  z-index: 999999 !important;
}

/* Better Visual Feedback */
.wlp-power-type-option,
.wlp-package-card,
.wlp-entry-option {
  cursor: pointer;
  transition: all 0.3s ease;
}

.wlp-power-type-option:hover,
.wlp-package-card:hover,
.wlp-entry-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.wlp-power-type-option.selected,
.wlp-package-card.selected,
.wlp-entry-option.selected {
  border-color: #00bfa6;
  background: linear-gradient(135deg, #f0fff9 0%, #e6fff7 100%);
  box-shadow: 0 4px 12px rgba(0, 191, 166, 0.3);
}

.wlp-package-image {
  text-align: center;
  margin-bottom: 15px;
}
.wlp-package-image img {
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background: #fff;
  padding: 5px;
}
