.container-svg-to-png-converter {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #fff5e2 0%, #fff5e2 100%);
  min-height: 100vh;
  padding: 20px;
  /* Responsive Design */
}
.container-svg-to-png-converter .containerr {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.container-svg-to-png-converter .headerr {
  background: linear-gradient(135deg, #de9406 0%, #de9406 100%);
  color: white;
  padding: 30px;
  text-align: center;
}
.container-svg-to-png-converter .headerr h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.container-svg-to-png-converter .headerr p {
  font-size: 1.1rem;
  opacity: 0.9;
}
.container-svg-to-png-converter .main-content {
  padding: 40px;
}
.container-svg-to-png-converter .upload-section {
  border: 3px dashed #de9406;
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  background: #fffef5;
}
.container-svg-to-png-converter .upload-section:hover {
  border-color: #1e1e1e;
  background: #fffdec;
}
.container-svg-to-png-converter .upload-section.dragover {
  border-color: #d3ae69;
  background: #fff9d4;
  transform: scale(1.02);
}
.container-svg-to-png-converter .upload-icon {
  font-size: 4rem;
  color: #de9406;
  margin-bottom: 20px;
  line-height: 100px;
}
.container-svg-to-png-converter .upload-text {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 15px;
}
.container-svg-to-png-converter .upload-subtext {
  color: #666;
  font-size: 1rem;
}
.container-svg-to-png-converter .file-input {
  display: none;
}
.container-svg-to-png-converter .options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}
.container-svg-to-png-converter .option-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
}
.container-svg-to-png-converter .option-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.container-svg-to-png-converter .option-icon {
  font-size: 1.5rem;
  color: #de9406;
}
.container-svg-to-png-converter .resize-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  margin-bottom: 15px;
}
.container-svg-to-png-converter .resize-btn {
  padding: 12px 15px;
  border: 2px solid #de9406;
  background: white;
  color: #de9406;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  text-align: center;
}
.container-svg-to-png-converter .resize-btn.active {
  background: #de9406;
  color: white;
}
.container-svg-to-png-converter .resize-btn:hover {
  background: #de9406;
  color: white;
}
.container-svg-to-png-converter .input-group {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}
.container-svg-to-png-converter .input-field {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.container-svg-to-png-converter .input-field:focus {
  outline: none;
  border-color: #de9406;
}
.container-svg-to-png-converter .toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.container-svg-to-png-converter .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.container-svg-to-png-converter .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}
.container-svg-to-png-converter .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
.container-svg-to-png-converter input:checked + .slider {
  background-color: #de9406;
}
.container-svg-to-png-converter input:checked + .slider:before {
  transform: translateX(26px);
}
.container-svg-to-png-converter .file-list {
  margin-bottom: 30px;
}
.container-svg-to-png-converter .file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  background: white;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}
.container-svg-to-png-converter .file-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.container-svg-to-png-converter .file-icon {
  font-size: 2rem;
  color: #de9406;
}
.container-svg-to-png-converter .file-details h4 {
  color: #333;
  margin-bottom: 5px;
}
.container-svg-to-png-converter .file-details p {
  color: #666;
  font-size: 0.9rem;
}
.container-svg-to-png-converter .remove-btn {
  background: #ff4757;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.container-svg-to-png-converter .remove-btn:hover {
  background: #ff3742;
}
.container-svg-to-png-converter .convert-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #de9406 0%, #de9406 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}
.container-svg-to-png-converter .convert-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(222, 146, 6, 0.3568627451);
}
.container-svg-to-png-converter .convert-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.container-svg-to-png-converter .progress-bar {
  width: 100%;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
  display: none;
}
.container-svg-to-png-converter .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #de9406, #de9406);
  width: 0%;
  transition: width 0.3s ease;
}
.container-svg-to-png-converter .status-message {
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: none;
}
.container-svg-to-png-converter .status-success {
  background: #fff1d8;
  color: #de9406;
  border: 1px solid #d6aa58;
}
.container-svg-to-png-converter .status-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
@media (max-width: 768px) {
  .container-svg-to-png-converter .header h1 {
    font-size: 2rem;
  }
  .container-svg-to-png-converter .main-content {
    padding: 20px;
  }
  .container-svg-to-png-converter .options-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .container-svg-to-png-converter .resize-options {
    grid-template-columns: repeat(2, 1fr);
  }
  .container-svg-to-png-converter .input-group {
    flex-direction: column;
  }
  .container-svg-to-png-converter .file-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .container-svg-to-png-converter body {
    padding: 10px;
  }
  .container-svg-to-png-converter .headerr {
    padding: 20px;
  }
  .container-svg-to-png-converter .headerr h1 {
    font-size: 1.8rem;
  }
  .container-svg-to-png-converter .main-content {
    padding: 15px;
  }
  .container-svg-to-png-converter .upload-section {
    padding: 25px 15px;
  }
  .container-svg-to-png-converter .resize-options {
    grid-template-columns: 1fr;
  }
}