/* Buttons */
.widget-button-standard,
.widget-button-delete {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 160ms ease, transform 80ms ease, box-shadow 160ms ease;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
}

.widget-button-standard { 
  background: var(--color-button-bg); 
  color: var(--color-button-text); 
}

.widget-button-standard:hover { 
  background: var(--color-button-bg-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.widget-button-delete { 
  background: var(--color-danger-bg); 
  color: var(--color-danger-text); 
}

.widget-button-delete:hover { 
  background: var(--color-danger-bg-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Responsive Buttons - Mobile */
@media (max-width: 768px) {
  .widget-button-standard,
  .widget-button-delete {
    padding: 10px 16px;
    font-size: 0.875rem;
    width: 100%;
    max-width: 300px;
  }
}

/* Responsive Buttons - Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .widget-button-standard,
  .widget-button-delete {
    padding: 11px 18px;
    font-size: 0.9375rem;
  }
}
