.home-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: 700px;
}

/* Header */
.home-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  gap: 16px;
}

.home-header h1 {
  font-size: 2.2rem;
  margin: 0;
}

.home-header p {
  margin-top: 8px;
  color: #6b7280;
}

/* Button */
.primary-btn {
  background: #1e88e5;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(30, 136, 229, 0.25);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(30, 136, 229, 0.35);
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.homeCard {
  background: white;
  border-radius: 14px;
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  height: 100%;
}

.homeCard:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.card-icon {
  /* font-size: 8rem !important;
  color: #616161;
  margin-bottom: 16px; */
  width: 128px;
  height: 128px;
  object-fit: contain;
  margin-bottom: 16px;
  user-select: none;
  opacity: 0.7;
}

.homeCard:hover .card-icon {
  transform: scale(1.09);
  transition: transform 0.2s ease;
  filter: invert(38%) sepia(87%) saturate(520%) hue-rotate(190deg)
    brightness(95%) contrast(90%);
}

.homeCard:hover .cardTitle,
.homeCard:hover .pCard {
  color: #1e88e5;
}

.homeCard h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.homeCard p {
  margin: 0;
  font-size: 0.9rem;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 640px) {
  .home-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .primary-btn {
    width: 100%;
  }
}

#main {
  flex: 1;
  min-height: 750px;
}

#root {
  width: 100%;
  height: 70vh;
}

.cardTitle,
.pCard {
  user-select: none;
}
