body {
        overflow-x: hidden;
        font-family: Verdana, sans-serif;
        margin: 0;
        padding: 1em;
        background-color: #FFF8F0; 
        border-top: 5px solid #D76D2F;
        display: block;}
       * {box-sizing: border-box;}
/* Make all <strong> text lighter */
strong {
  font-weight: 600 !important;
  color: #727272 !important;
}

h1, h2, h3 {
    font-weight: 600 !important;}

/* For the front page */
.frontpage .container {
    background: #ffffff;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 960px;
    width: 100%;} 

/* For all other pages */
.other-page .container {
    background: #FFF0E3;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;}

h1, h2, p, button {font-family: Verdana, sans-serif;}

h1 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-align: center;
    color: #D76D2F;}

label {
    font-size: 1rem;
    display: block;
    margin-bottom: 5px;}

input, select, button {
    width: 100%;
    max-width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;}

button {
    background-color: #D76D2F;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;}
button:hover {background-color: #A84C1F;} 

h2,h3,h4,h5 {color: #A84C1F;}
h2 {font-size: 1.3rem;}
h3 {font-size: 1.1rem;}
h4 {font-size: 1.0rem;}

ul,ol {line-height: 1.6rem;} 
ul, ol {
    margin-top: 1rem; /* or another value */
    margin-bottom: 1rem;}

p {text-align: left;font-size: 1.0rem;line-height: 1.5rem;}

nav a {
    text-decoration: none; /* Removes underline from links */
    color: #04809D;
    font-size: 1.2rem; 
    font-weight: 500;
    line-height: 1.7rem;
    padding: 5px; /* Adds padding for spacing */
    transition: color 0.3s ease; /* Adds smooth hover effect */}

nav a:hover {color: #D76D2F;} 

p + ul {margin-top: -0.9em;} 

h4 + ul {margin-top: -0.9em;} 

.breadcrumb{font-size: 0.9rem;text-align: center;} 
img, table {
    max-width: 100%;
    height: auto;} 
a:link {text-decoration: none;}

/* Small mobile screens */
@media (max-width: 480px){ 
    .container {
        padding: 20px;
        width: 100%;
        max-width: 400px;}
    h1 {font-size: 1.4rem;}
    p {line-height: 1.4rem;}
} 
.vivavita-share {
  display: flex;
  flex-direction: row; /* vandret layout */
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: 1rem;
  flex-wrap: nowrap; /* forhindrer linjeskift */
  overflow-x: auto; /* gør det scrolleligt på mobil, hvis der ikke er plads */
  padding-bottom: 4px;
}

.share-btn {
  background: #0077cc;
  color: white;
  border: none;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap; /* holder teksten på én linje */
  transition: background 0.2s;
}

.share-btn:hover {
  background: #005fa3;
}

.share-btn .icon {
  margin-right: 5px;
}
