/********************************************************
/* Definition der Stilattribute für die Webseite des    *
/* Portals von Dr. Schulte-Weyrich in Baden-Baden       *
/* Version vom 07.11.2024 16:28 Uhr                     *
/* File: FSWStyle.css                                   *
/********************************************************/
body
 {
  margin: 1%;
  font-family: serif;
  background-color: #DCF0FF;
  line-height: 1.0;
  color: black;
 }
h1.spezial
 {
  color : green;
 }
h2.spezial
 {
  margin: 1%;
  color: blue;
  font-style: italic;
 }
h3.spezial
 {
  color: blue;
  font-size: 100%;
  font-style: italic;
 }
p.spezial
 {
  color: blue;
  border: solid red;
 }
hr.spezial
 {
  color: gray;
 }
.info
 {
/*  margin: 1%; */
  font-size: 20px;
  color: blue;
  font-style: italic;
 }

/* Menuesteuerung: Einfache Styles */
.navbar
 {
  margin-bottom: 10px;
  overflow: hidden;
  background-color: darkcyan;
  color: red;
  font-family: Arial, Helvetica, sans-serif;
 }
.navbar a
 {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 10px 12px;
  text-decoration: none;
 }
.dropdown
 {
  float: left;
  overflow: hidden;
 }

.dropdown .dropbtn
 {
  cursor: pointer;
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 10px 12px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
 }
.navbar a:hover, .dropdown:hover .dropbtn, .dropbtn:focus
 {
  background-color: red;
 }
.dropdown-content
 {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
 }

.dropdown-content a
 {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
 }
.dropdown-content a:hover
 {
  background-color: #ddd;
 }
.show
 {
  display: block;
 }

/* Einfache Styles */
.menu { margin-bottom: 10px; }

.menu a
 {
  margin-right: 15px;
  cursor: pointer;
  color: blue;
  text-decoration: underline;
 }
#content
 {
  border: 1px solid #ccc;
  padding: 20px;
  height: 68%;
  overflow-y: scroll;
  text-align: left;
 }
#footer
 {
  padding: 1px;
  margin: 1px;
  text-align: center;
  color: black;
 }
