* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --button-bg: #007bff; /* Button background color */
    --button-bg-hover: #d0d0d0; /* Button hover background */
    --button-text: white; /* Button text color */
    --border-color: black;
    --bg-neutral-light: #f0f0f0;
    --bg-neutral-dark: #e0e0e0;
    --shadow-color: black;
}

body {
    padding: 2rem;
    /* Remove margin/padding if you want a tighter layout, or keep some padding for spacing */

    font-family: "Trebuchet MS", Tahoma, sans-serif;
    background-color: white;

    /* Make sure the page can scroll if content is tall */
    overflow: auto; 
}

.container {
    /* Let the container expand based on its content or max-width */
    max-width: 60rem;
    width: 100%;
    margin: 0 auto;
    border: 2px solid var(--border-color);
    
    display: flex;
    flex-direction: column;
    background-color: white;
    box-shadow: 10px 10px 0 var(--shadow-color);
    border-radius: 12px;

    /* Removed fixed height and overflow hidden */
    /* height: calc(100vh - 4rem); */
    /* max-height: 60rem; */
    /* overflow: hidden; */
}

.main-content {
    background-color: #f2f0ea;
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: auto;

    /* If your content is very tall, let it scroll if needed */
    overflow-y: auto;
}

.homepage {
    /* Some optional spacing or adjustments */
}

.navigation {
    text-align: center;
    margin-top: 2rem;
}

.navigation-button {
    display: inline-block;
    font-size: 0.875rem;
    text-align: center;
    text-decoration: none;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    background-color: var(--bg-neutral-light);
    color: black;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, font-weight 0.2s;
    border-radius: 6px;
    margin: 0.25rem;
}

.navigation-button:hover {
    background-color: var(--button-bg-hover);
    transform: translateY(-2px);
}

.footer {
    padding: 0.5rem;
    /* If you want it truly “sticky,” you could do position: sticky; bottom: 0; 
       but then ensure the container can scroll properly. */
    background-color: var(--bg-neutral-dark);
    text-align: center;
    color: black;
    box-shadow: -2px -2px 0 var(--shadow-color);
}

/* Optional: Tweak styles on smaller screens */
@media (max-width: 768px) {
    body {
        padding: 0.5rem;
    }

    .container {
        max-width: 100%;
        box-shadow: none; /* remove or reduce shadow for small screens */
        border-radius: 0; /* optional */
    }

    .main-content {
        padding: 1rem;
    }
}

#cookie-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
    display: none;
    z-index: 1000;
    font-size: 14px;
    text-align: center;
  }

  #cookie-settings {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 999;
  }

  #cookie-settings::after {
    content: "🍪";
    font-size: 24px;
  }

  #cookie-settings:hover {
    transform: scale(1.05); /* Small hover effect */
}

  .cookie-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
  }

  button {
    padding: 8px 12px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
  }

  #accept-cookies {
    background: #28a745;
    color: white;
  }

  #reject-cookies {
    background: #dc3545;
    color: white;
  }