body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f6;
    margin: 0;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.main-container {
    text-align: center;
    width: 90%;
    max-width: 1000px;
}

.card-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* Card Styling */
.card {
    background-color: white;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    padding: 40px;
    text-decoration: none;
    color: #333;
    flex: 1; /* Makes cards equal width */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Hover Effects */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card h2 {
    margin-top: 0;
    color: #007bff;
}

.button-link {
    display: inline-block;
    margin-top: 20px;
    font-weight: bold;
    color: #007bff;
}

/* */
.logout-card-form {
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  background-color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.logout-card-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.logout-card-btn {
  width: 100%;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  text-align: inherit;
  color: inherit;
}

.card-content {
  padding: 20px;
}

/* */
div.card-button {
  /* Layout & Size */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px; /* Adjust to match your size */
  height: 120px;
  
  /* Styling */
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  
  /* Resetting Link/Button defaults */
  text-decoration: none;
  color: inherit;
  border: none; 
  outline: none;
  padding: 0;
}

.card-button:hover {
  transform: translateY(-2px);
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.card-content-form {
  text-align: center;
  cursor: pointer;
  pointer-events: auto; 
}

.card-content {
  text-align: center;
  pointer-events: none; /* Ensures click goes to the card container */
}

#dumb-form-container {
  text-align: center;
  cursor: pointer;
  pointer-events: auto; 
}

button, 
[role="button"],
.clickable {
  cursor: pointer;
}


/* Responsive: Stack on mobile */
@media (max-width: 768px) {
    .card-grid {
        flex-direction: column;
    }
}
