/* ============================================
   2.1 ICC COMPRESS MODULE STYLES
   Size compression specific styles
   ============================================ */
#size-options-container {
  justify-content: center;
  display: flex;
  visibility: visible !important;
  opacity: 1 !important;
  align-items: center;
  margin: 0 !important;  /* ← CHANGED */
  padding: 0;
  z-index: 10010 !important;
}
	
/* Size Radio Options */
#size-radio-options {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
#size-radio-options label,
.size-option {
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  transition: all 0.3s ease;
}
#size-radio-options label:hover,
.size-option:hover {
  background: rgba(255, 255, 255, 0.2);
}
#size-radio-options input[type="radio"] {
  margin: 0;
  margin-right: 5px;
}
/* Custom Size Input */
#custom-size-input,
.custom-size-input {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  width: 100px;
  background: #fff;
  color: #333;
}
/* Custom Size Option */
.size-option.size-custom {
  display: flex;
  align-items: center;
  gap: 8px;
}
.size-label {
  font-weight: 500;
}

/* ============================================
   FORMAT CONVERSION IN COMPRESS MODULE
   ============================================ */
#size-convert-container {
  margin: 20px 0;
  text-align: center;
  display: none;
}

#size-convert-container.show {
  display: block;
}

#size-toggle-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

#size-toggle-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

#size-convert-buttons {
  margin-top: 15px;
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.4s ease;
}

#size-convert-buttons.size-convert-buttons-visible {
  max-height: 200px;
  opacity: 1;
}

#size-convert-buttons.size-convert-buttons-hidden {
  max-height: 0;
  opacity: 0;
}

.size-format-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.size-format-label:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.size-format-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.size-format-label span {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive for Compress */
@media (max-width: 768px) {
  #size-options-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  #size-radio-options {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  #size-convert-buttons {
    flex-direction: column;
    align-items: center;
  }
}