/* Family RSVP Confirmation Styles */
.hippie-background {
  background: linear-gradient(135deg, #fdf4e3 0%, #f5e6d3 50%, #e8d5b7 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.floating-element {
  position: absolute;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.floating-element:nth-child(even) {
  animation-delay: -3s;
  animation-duration: 8s;
}

.floating-element:nth-child(3n) {
  animation-delay: -1s;
  animation-duration: 7s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hippie-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 2px solid #d4a574;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 10;
}

.hippie-card-header {
  background: linear-gradient(135deg, #d4a574 0%, #e6c994 100%);
  color: #5d4e37;
  padding: 1.5rem;
  border-radius: 18px 18px 0 0;
  border-bottom: 3px solid #c49a6c;
}

.hippie-detail-card {
  background: rgba(255, 248, 240, 0.8);
  border: 2px solid #e6c994;
  border-radius: 15px;
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.hippie-icon-wrapper {
  background: linear-gradient(135deg, #d4a574 0%, #e6c994 100%);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #c49a6c;
}

.hippie-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid;
  cursor: pointer;
  min-height: 3rem;
}

.hippie-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.hippie-button-accept {
  background: linear-gradient(135deg, #90c695 0%, #a8d5aa 100%);
  border-color: #7bb77f;
  color: #2d5016;
}

.hippie-button-accept:hover:not(:disabled) {
  background: linear-gradient(135deg, #7bb77f 0%, #90c695 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(123, 183, 127, 0.4);
}

.hippie-button-decline {
  background: linear-gradient(135deg, #e4a574 0%, #e6b894 100%);
  border-color: #d4956a;
  color: #8b4513;
}

.hippie-button-decline:hover:not(:disabled) {
  background: linear-gradient(135deg, #d4956a 0%, #e4a574 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 149, 106, 0.4);
}

.hippie-alert {
  padding: 1rem;
  border-radius: 15px;
  border: 2px solid;
  margin: 1rem 0;
}

.hippie-alert-success {
  background: linear-gradient(135deg, #e8f5e8 0%, #f0fff0 100%);
  border-color: #90c695;
  color: #2d5016;
}

.hippie-colors {
  --earth-brown: #8b4513;
  --warm-beige: #f5e6d3;
  --sage-green: #90c695;
  --sunset-orange: #e4a574;
  --peaceful-white: rgba(255, 255, 255, 0.95);
}

.member-card {
  background: var(--peaceful-white);
  border: 2px solid #e6c994;
  border-radius: 15px;
  padding: 0.15rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}

.member-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.2);
}

.member-card.updating {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.status-accepted { 
  background: #e8f5e8; 
  color: #2d5016; 
  border: 1px solid #90c695; 
}

.status-declined { 
  background: #fdf2f2; 
  color: #8b4513; 
  border: 1px solid #e4a574; 
}

.status-pending { 
  background: #fef3e2; 
  color: #8b4513; 
  border: 1px solid #d4a574; 
}

.hippie-response-section {
  padding: 2rem;
  text-align: center;
  background: var(--peaceful-white);
  border-radius: 15px;
  border: 2px solid #e6c994;
}

.hippie-response-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.notification {
  position: fixed;
  top: 1rem;
  right: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 15px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 20rem;
  font-size: 0.875rem;
  border: 2px solid;
  font-weight: 600;
  animation: slideIn 0.3s ease-out;
}

.notification.success {
  background: linear-gradient(135deg, #90c695 0%, #a8d5aa 100%);
  border-color: #7bb77f;
  color: #2d5016;
}

.notification.error {
  background: linear-gradient(135deg, #e4a574 0%, #d4956a 100%);
  border-color: #c49a6c;
  color: #8b4513;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.5s ease-in;
}

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