body {
    font-family: 'Open Sans', Arial, sans-serif;/* Calibri, Arial, sans-serif; */
    text-align: center;
    padding: 20px;
     background-color: #222222; /* Dark grey background */
}

.container {
    width: 50%;
    text-align: left;
	max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    /* border: 1px solid #e0e0e0;*/
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
	color: #ffffff;
}

a {
    color: #b0c4de; /* DodgerBlue for a nice contrast */
    text-decoration: none; /* Remove default underline */
    transition: color 0.3s ease; /* Smooth color change on hover */
}

/* Link hover style */
a:hover {
    color: #ffcc00; /* Yellow color on hover for emphasis */
    text-decoration: underline; /* Underline on hover */
}

/* Visited link style */
a:visited {
    color: #b0c4de; /* LightSteelBlue to show it's been visited */
}

/* Active link style */
a:active {
    color: #ff6347; /* Tomato color when the link is clicked */
}

h1, h2, h3, h4, h5, h6 {
    /*color: #333;  The main color of your text */
    color: #ffffff; /* White text for headings */
}

table {
    margin: 20px auto;
    border-collapse: collapse;
    width: 50%;
    border: 2px solid #000;
}




th {
    background-color: #333; /* Dark grey background for table headers */
    color: #fff; /* White font color */
    padding: 10px;
    border: 1px solid #555;
}

td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: right;
    background-color: #fafafa; /* Slightly lighter grey for table cells */
}

tr:nth-child(1) td { /* Specifically targets the row with "- Rest RP" */
    background-color: #ccffcc; /* Light green background color */
}

input[type="number"] {
    width: 100px;
    padding: 5px;
    text-align: right;
}

/* Styling for the "Paket Minimum" row */
#packageInfoRow {
    background-color: #add8e6; /* Light blue background color */
    font-weight: bold; /* Bold text */
}
/* Styling for the "Paket Minimum" row */
#packageInfoRow2 {
    background-color: #add8e6; /* Light blue background color */
    font-weight: bold; /* Bold text */
}
#packageInfo {
    background-color: #add8e6; /* Light blue background color */
    font-weight: bold; /* Bold text */
}

/* Styling for the "Paket Minimum" row */
#sumcss {
    background-color: #add8e6; /* Light blue background color */
    font-weight: bold; /* Bold text */
}
#sumcss2 {
    background-color: #add8e6; /* Light blue background color */
    font-weight: bold; /* Bold text */
}
/* Styling for the "Paket Minimum" row */
#sumCostInEuros {
    background-color: #add8e6; /* Light blue background color */
    font-weight: bold; /* Bold text */
}

/* Styles für den Cookie-Hinweis */
#cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 10px;
    z-index: 1000;
    display: none;
}

#cookie-banner button {
    margin-left: 10px;
    padding: 5px 10px;
    background-color: #f1c40f;
    border: none;
    cursor: pointer;
}

#cookie-banner a {
    color: #f1c40f;
}

.cookie-dependent {
    visibility: hidden;
}

.cookie-dependent.visible {
    visibility: visible;
}


footer {
    background-color: #555555; /* Dunkelgrauer Hintergrund passend zum Design */
    padding: 10px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    display: flex; /* Flexbox verwenden für zentrierte Ausrichtung */
    justify-content: center; /* Horizontal zentrieren */
    align-items: center; /* Vertikal zentrieren */
}

footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex; /* Flexbox verwenden für horizontale Ausrichtung */
    gap: 30px; /* Abstand zwischen den Links */
}

footer ul li {
    display: inline; /* Sicherstellen, dass die Listenelemente inline bleiben */
}

footer ul li a {
    color: #ffffff; /* Weiße Schriftfarbe */
    text-decoration: none;
}

footer ul li a:hover {
    text-decoration: underline; /* Unterstreichen beim Hover */
}
