/******************************************
 * INLINE ALERT STYLES
 ******************************************/

/* Inline Alert Container */
.inline-alert {
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
  border: 1px solid #bbdefb;
  border-radius: 12px;
  margin: 16px 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.1);
}

.inline-alert.visible {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  margin: 16px 0;
}

.inline-alert.hiding {
  max-height: 0;
  opacity: 0;
  transform: translateY(-20px);
  margin: 0;
}

/* Alert Content */
.inline-alert-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  position: relative;
}

/* Alert Icon */
.inline-alert-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: #2196f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  margin-top: 2px;
}

/* Alert Text */
.inline-alert-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1976d2;
}

.inline-alert-text strong {
  color: #0d47a1;
  font-weight: 600;
}

.inline-alert-text h2 {
  color: #0d47a1;
  font-size: 1.3rem;
  margin: 0 0 12px 0;
  font-weight: 600;
}

.inline-alert-text section {
  margin: 0;
}

.inline-alert-text p {
  margin: 0 0 12px 0;
}

.inline-alert-text p:last-child {
  margin-bottom: 0;
}

.inline-alert-text ul {
  margin: 8px 0 12px 0;
  padding-left: 20px;
}

.inline-alert-text li {
  margin-bottom: 4px;
}

.fire-highlight {
  background-color: #fff3cd;
  border-left: 6px solid #ffa726;
  padding: 0.75em;
  margin-top: 1em;
  border-radius: 0 4px 4px 0;
}

.fire-highlight p {
  margin: 0;
  color: #856404;
}

.fire-highlight strong {
  color: #856404;
}

.fire-icon {
  font-size: 1.2em;
}

/* Close Button */
.inline-alert-close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: #6c757d;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  margin-top: -4px;
  margin-right: -4px;
}

.inline-alert-close:hover {
  background: rgba(108, 117, 125, 0.1);
  color: #495057;
}

.inline-alert-close:active {
  transform: scale(0.95);
}

/* More Details Toggle Button */
.inline-alert-details-toggle {
  display: inline-block;
  margin: 8px 0 10px 0;
  padding: 4px 14px;
  background: linear-gradient(90deg, #1976d2 0%, #64b5f6 100%);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  border-radius: 22px;
  box-shadow: 0 1px 4px rgba(33, 150, 243, 0.08);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  outline: none;
}

.inline-alert-details-toggle:hover,
.inline-alert-details-toggle:focus {
  background: linear-gradient(90deg, #1565c0 0%, #42a5f5 100%);
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.15);
  color: #fff;
}

.inline-alert-details-toggle:active {
  transform: scale(0.97);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .inline-alert {
    margin: 12px 0;
    border-radius: 10px;
  }
  
  .inline-alert.visible {
    margin: 12px 0;
  }
  
  .inline-alert-content {
    padding: 16px;
    gap: 12px;
  }
  
  .inline-alert-icon {
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
  }
  
  .inline-alert-text {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .inline-alert-close {
    font-size: 1rem;
    width: 28px;
    height: 28px;
  }

  .inline-alert-details-toggle {
    font-size: 0.88rem;
    padding: 3px 10px;
  }
}

@media (max-width: 480px) {
  .inline-alert {
    margin: 8px 0;
    border-radius: 8px;
  }
  
  .inline-alert.visible {
    margin: 8px 0;
  }
  
  .inline-alert-content {
    padding: 12px;
    gap: 10px;
  }
  
  .inline-alert-text {
    font-size: 0.85rem;
  }

  .inline-alert-details-toggle {
    font-size: 0.85rem;
    padding: 2px 7px;
  }
}

/* Animation for artist cells moving up */
.artist-cells-container {
  transition: margin-top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.artist-cells-container.alert-space {
  margin-top: 0;
} 