:root {
  color-scheme: light;
  --bg-color: #fdf8e1; /* zachte lichte geel achtergrond */
  --primary-color: #ff8da1; /* rozeachtig fel */
  --secondary-color: #ffd97d; /* geelachtig */
  --accent-color: #8adeff; /* licht blauw */
  --card-color: #ffffff; /* kaarten wit met schaduw */
  --text-color: #333333; /* standaard tekstkleur */
  --light-blue-white: #e0f7ff; /* lichtblauw-wit voor achtergrond */
  --blue-logo: #99ceda; /* extra blauwe tint */
  --dark-blue: #428797; /* donkerblauw voor contrast */
}

body {
  color: var(--text-color);
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, var(--light-blue-white), var(--bg-color));
  height: 100vh;
  color: #2c3e50;
}

.card {
  width: 100%;
  max-width: 750px;
  background: #fff9d6;
  border-radius: 20px;
  padding: 20px 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  margin: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card h2 {
  font-family: 'Pacifico', cursive;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.card h3 {
  margin-top: 0;
  color: #ff6f91;
  font-family: 'Pacifico', cursive;
}

/* Global styling for buttons with class "myButton" */
.myButton {
  background-color: #ff6f91 !important;
  color: white !important;
  font-weight: bold !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 12px rgba(255, 111, 145, 0.4) !important;
  transition: 0.2s ease-in-out !important;
  padding: 10px 24px !important;
  min-width: auto !important;
  transition: 0.2s ease-in-out !important;
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 0 auto !important;
}

/* Hover effect */
.myButton:hover {
  background-color: #ff5a7f !important;
  box-shadow: 0 6px 16px rgba(255, 90, 127, 0.5) !important;
}

/* Active (pressed) effect */
.myButton:active {
  transform: scale(0.97);
}
main{
  background: white;
    color: black;
}

.main {
  min-height: 100vh;
  height: auto;
  overflow-y: auto;
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  flex: 1;
  background: linear-gradient(135deg, var(--light-blue-white), var(--bg-color));
  border-radius: 20px 0 0 20px;
  margin: 10px;
  margin-top: 80px;
}
/* To center the header after vuetify import*/
.v-toolbar__content {
  justify-content: center !important;
}

.button-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
