/*
 * BUTTONS
 * Stiluri pentru toate butoanele din aplicația PVC
 */

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary {
  background: #e1b922;
  color: #222;
  font-size: 16px;
  padding: 15px;
}

.btn-primary:hover {
  background: #d12627;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(209, 38, 39, 0.3);
}

.btn-primary:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  background: #e1b922;
  color: #222;
}

.btn-secondary:hover {
  background: #d12627;
  color: #fff;
}

.btn-success {
  background: #28a745;
  color: #fff;
  font-size: 16px;
  padding: 15px 24px;
}

.btn-success:hover:not(:disabled) {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.btn-success:disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
}

.btn-success.active {
  animation: pulse 0.6s ease-in-out;
}

.btn-add {
  background: #e1b922;
  color: #222;
  margin-top: 10px;
}

.btn-add:hover {
  background: #d12627;
  color: #fff;
}

.btn-remove {
  background: #d12627;
  color: #fff;
  height: 40px;
  font-size: 12px;
}

.btn-remove:hover {
  background: #e1b922;
  color: #222;
}

.btn-edit {
  background: #e1b922;
  color: #222;
  height: 40px;
  font-size: 14px;
}

.btn-edit:hover {
  background: #374151;
  color: #fff;
}

.btn-save {
  background: #28a745;
  color: #fff;
  height: 40px;
  font-size: 14px;
}

.btn-save:hover {
  background: #218838;
}

.edit-btn {
  background: #e1b922;
  color: #222;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.edit-btn:hover {
  background: #d12627;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(209, 38, 39, 0.3);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
