.bulk-creator {
  max-width: 1200px;
  margin: 0 auto;
}

.bulk-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.bulk-header h2 {
  color: #e9edef;
  font-size: 28px;
}

.bulk-actions {
  display: flex;
  gap: 10px;
}

.import-btn,
.export-btn {
  background: #25d366;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

.import-btn:hover,
.export-btn:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.info-box {
  background: #202c33;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-box h3 {
  color: #e9edef;
  margin-bottom: 15px;
  font-size: 18px;
}

.info-box ul {
  color: #8696a0;
  line-height: 1.8;
  padding-left: 20px;
}

.info-box li {
  margin-bottom: 8px;
}

.grupos-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.grupo-card {
  background: #202c33;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.grupo-card:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
  background: #2a3942;
}

.grupo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.grupo-header h3 {
  color: #e9edef;
  font-size: 20px;
}

.remove-grupo-btn {
  background: #f44336;
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.remove-grupo-btn:hover {
  background: #da190b;
  transform: scale(1.1);
}

.grupo-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: #e9edef;
  font-weight: 500;
  font-size: 14px;
}

.form-input,
.form-textarea {
  padding: 12px;
  border: 2px solid #2a3942;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s;
  font-family: inherit;
  background: #111b21;
  color: #e9edef;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #25d366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #8696a0;
}

.form-textarea {
  resize: vertical;
  font-family: monospace;
  min-height: 120px;
}

.participants-count {
  font-size: 12px;
  color: #8696a0;
  margin-top: 5px;
}

.bulk-footer {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.add-grupo-btn {
  background: #25d366;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s;
}

.add-grupo-btn:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.criar-grupos-btn {
  background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  flex: 1;
  max-width: 300px;
}

.criar-grupos-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.criar-grupos-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.resultados-panel {
  background: #202c33;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.resultados-panel h3 {
  color: #e9edef;
  margin-bottom: 20px;
  font-size: 22px;
}

.resultados-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.stat {
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
}

.stat.success {
  background: #e8f5e9;
  color: #2e7d32;
}

.stat.error {
  background: #ffebee;
  color: #c62828;
}

.resultados-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.resultado-item {
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid;
}

.resultado-item.success {
  background: #e8f5e9;
  border-color: #4caf50;
}

.resultado-item.error {
  background: #ffebee;
  border-color: #f44336;
}

.resultado-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.resultado-icon {
  font-size: 20px;
  font-weight: bold;
}

.resultado-nome {
  font-weight: 600;
  font-size: 16px;
  color: #e9edef;
}

.resultado-info {
  color: #8696a0;
  font-size: 14px;
  margin-left: 30px;
  font-family: monospace;
}

.resultado-error {
  color: #c62828;
  font-size: 14px;
  margin-left: 30px;
}

