/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
/* Prevent scrolling while dialog is open */

/* Logo upload enhancements */
.logo-upload-preview {
  transition: all 0.2s ease-in-out;
}

.logo-upload-preview:hover {
  transform: scale(1.02);
}

/* File input styling enhancements */
input[type="file"]::-webkit-file-upload-button {
  transition: background-color 0.2s ease;
}

input[type="file"]::-webkit-file-upload-button:hover {
  background-color: rgb(238 242 255);
}

/* Smooth transitions for logo changes */
.logo-preview {
  transition: all 0.3s ease;
}

/* Upload actions animation */
#upload-actions {
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* File info fade in */
#file-info {
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Account stats hover effects */
.account-stats-card:hover {
  transform: translateY(-2px);
  transition: transform 0.2s ease;
}

/* Announcement receipt badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-green {
  background-color: #dcfce7;
  color: #166534;
}

.badge-red {
  background-color: #fee2e2;
  color: #991b1b;
}

.badge-yellow {
  background-color: #fef3c7;
  color: #92400e;
}

.badge-gray {
  background-color: #f3f4f6;
  color: #374151;
}
