.akasha-app-install-prompt {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
  z-index: 10000;
  animation: akashaSlideUp 0.3s ease-out; /* Renamed animation */
  background-color: white;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); /* Added subtle shadow */
}

/* Renamed animation */
@keyframes akashaSlideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.prompt-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background-color: white;
  color: black;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.prompt-left {
  display: flex;
  align-items: center;
}

.prompt-icon {
  flex-shrink: 0;
  margin-right: 16px;
}

.prompt-icon img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.prompt-text {
  flex-grow: 1;
}

.prompt-text h3 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.prompt-text p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

.prompt-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
}

.install-button {
  padding: 8px 16px;
  /* Replaced variables with hex codes */
  background: linear-gradient(135deg, #F2D675 0%, #D4AF37 50%, #AA8C2C 100%); 
  color: #000000; /* Replaced --deep-purple with black */
  border: none;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Cinzel', serif;
}

.install-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.5);
}

.dismiss-button {
  padding: 6px 12px;
  background-color: transparent;
  color: #666;
  border: none;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.dismiss-button:hover {
  color: #333;
}

@media (max-width: 480px) {
  .akasha-app-install-prompt {
    /* Adjusted width and bottom for better mobile view */
    width: calc(100% - 24px); 
    bottom: 12px;
    left: 12px;
    right: 12px;
    border-radius: 8px; /* Add radius to bottom corners too */
  }
  
  .prompt-icon img {
    width: 40px;
    height: 40px;
  }
  
  .prompt-text h3 {
    font-size: 15px;
  }
  
  .prompt-text p {
    font-size: 13px;
  }
  
  .install-button {
    padding: 6px 14px;
    font-size: 13px;
  }
}
