/* =====================================
   Grundlayout
===================================== */

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #690000;
    color: #ffffff;
}


p {
    font-size: 14px;
    text-align: left;
}


/* =====================================
   Überschriften
===================================== */

h1 {
    font-size:20px;
    color:#ff0000;
}

h2 {
    font-size:18px;
    color:#00ff00;
}

h3 {
    font-size:16px;
    color:#33ccff;
}

h4 {
    font-size:10px;
    color:#ffff00;
}



/* =====================================
   Links
===================================== */

a {
    text-decoration:none;
}

a:hover {
    text-decoration:underline;
}



/* =====================================
   Kopf / Logo
===================================== */

.logo {
    width:100%;
    text-align:center;
    background:#690000;
}


.logo img {

    width:100%;
    max-width:none;
    height:auto;
    display:block;

}



/* =====================================
   Navigation
===================================== */


#main_navbar {

    width:100%;

}


.navbar-collapse {

    background:#2e2e2e;

}


/* aktiver Untermenüpunkt */

.dropdown-item.menu-link.aktiv {

    background:#ff9999 !important;
    color:#000 !important;
    font-weight:bold;

}


/* aktiver Hauptmenüpunkt */

.nav-link.haupt-menu.aktiv {

    background:#ff9999 !important;
    color:#000 !important;
    border-radius:4px;
    font-weight:bold;

}



.menu-link:hover,
.haupt-menu:hover {

    background:#690000 !important;
    color:#ffffff !important;

}




/* =====================================
   Inhalt
===================================== */


.webcontainer {

    width:95%;
    min-height:300px;
    background:#000;

}



/* =====================================
   Bilder
===================================== */


.bildanpassung img {

    max-width:90%;
    height:auto;
    display:block;
    margin:auto;

}




/* =====================================
   Formulare
===================================== */


input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=tel],
textarea {

    width:70%;

}


.eingabefeld,
.idcode {

    width:auto;

}



/* =====================================
   Gästebuch Pagination
===================================== */

.pagination {

    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin:20px 0;
}



.pagination a {
    padding:6px 10px;
    background:#690000;
    color:#ffffff;
    border:1px solid #666;
    border-radius:4px;

}

.pagination a:hover {
    background:#777;
    text-decoration:none;
}

.pagination .pageinfo {
    padding:7px 15px;
    background:#690000;
    color:#ffffff;
    border:1px solid #666;
    border-radius:4px;
    font-weight:bold;
}

/* =====================================
   Tabelle Spaltenabstand
===================================== */

	table {
  border-collapse: separate;
  border-spacing: 5px 5px;
}

