/**
 * Status Page Service Cards Styling
 * CSS for service cards displayed on the status page 
 */

/* Service Cards Container */
.service-cards-container {
  margin: 2rem 0;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/* Individual Service Card */
.service-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: #e6e6e6;
}

.service-card.selected {
  border-color: #4a6cf7;
  box-shadow: 0 0 0 2px rgba(74, 108, 247, 0.3);
}

.service-card .service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #4a6cf7;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: rgba(74, 108, 247, 0.1);
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}

.service-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  text-align: center;
  color: #333;
}

.service-card p {
  color: #666;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-cards {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .service-cards {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    max-width: 100%;
  }
}
