/* File: skin.site screen.css */

@import url(/public/css/corporate.css);

* {
  box-sizing: border-box;
}

/* Global variables */
:root {
   /*
    * Basis-Schriftgröße — alle rem-Werte skalieren hiervon.
    * clamp(min, preferred, max):
    *   - CSS-px sind bereits auflösungsunabhängig (Browser rechnet via Device-Pixel-Ratio um).
    *   - Die Skalierung reagiert auf die Viewport-Breite (vw), nicht auf physische Pixel.
    *   - Formel: 0.5vw + 11px wächst linear zwischen den Grenzen:
    *       ≤ 600px Viewport (Handy)       → 14px  (Minimum)
    *        800px Viewport (Tablet)       → 15px
    *       1000px Viewport (kleiner Desktop) → 16px
    *     ≥ 1400px Viewport (großer Desktop) → 18px  (Maximum)
    *   Anpassung: min/max-Werte oder den vw-Faktor (höher = schnelleres Anwachsen).
    */
   --base-font-size: clamp(14px, 0.5vw + 11px, 18px);
   --left-width: 180px;       /* left column width */
   --right-width: 350px;      /* right  column width */
   --content-width: auto;     /* center column: auto = flexible, eg. 600px = fixed width */
   --printable-width: 630px;  /* max printable width */
   --gap: 0;
/*   --gap: 0.5rem;  */         /* gap between columns */
}


body {
   margin: 0;
   background-color: var(--body-bg);
   font-family: sans-serif;
   height:auto !important; /* real browsers */
   min-height: 100vh;
   display: grid;
   grid-template-rows: auto 1fr auto; /* Header - Main - Footer */
}

header, footer {
   padding: 1rem;
   grid-column: 1 / -1; /* spanning all columns */
   text-align: center;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--header-bg);
    color: var(--header-color);
    padding: 0.5rem 1rem;
    gap: 1rem; /* Abstand zwischen Elementen */
    flex-wrap: wrap; /* bricht bei kleinen Bildschirmen um */
  }

header {
   height: 80px;
}

.footer {
   height: 60px;
   background-color: var(--footer-bg);
   color: var(--footer-color);
   display: flex;
   justify-content: space-between;    /* linke + rechte Seite */
   align-items: stretch;
   flex-wrap: wrap;                   /* bricht um auf kleinen Screens */
   padding: 1em;
   border-top: 1px solid #ccc;
   gap: 1em;
}

.footer-left {
   display: flex;
   align-items: center;
   gap: 1em;
   flex-wrap: wrap;
}

.footer-center {
   display: flex;
   align-items: center;
   gap: 1.2em;
   border-left:  1px solid rgba(255,255,255,0.35);
   border-right: 1px solid rgba(255,255,255,0.35);
   padding: 0 1em;
}
.footer-center a:link,
.footer-center a:visited {
   color: #fff;
   text-decoration: none;
   white-space: nowrap;
}
.footer-center a:hover,
.footer-center a:active {
   color: #fff;
   text-decoration: underline;
   background: none;
}

.footer-right {
   margin-left: auto;
   white-space: nowrap;
   display: flex;
   align-items: center;
}

.footer-button {
   color: black;
   padding-left: 6px;
   padding-right: 6px;
   background: #ddd;
   border-radius: 4px;
}

.footer-button:hover {
   color: white;
   padding-left: 6px;
   padding-right: 6px;
   background: #333;
   border-radius: 4px;
}

header .logo {
    height: 40px;
}

header .site-title {
    position:absolute;
    left: 30%;
    font-size: 1.5rem;
    font-weight: bold;
}

header .search-form {
    position:absolute;
    left: 60%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

header .search-form label {
    font-size: 1rem;
}

header .search-form input {
    padding: 0.25rem 0.5rem;
}

header .user-info {
    font-size: 0.9rem;
    white-space: nowrap;
}

main {
   flex: 1;                           /* occupies the free space */
   background-color:var(--main-bg);
   display: grid;
   grid-template-columns: var(--left-width) var(--content-width) var(--right-width);
   gap: var(--gap);
   padding: var(--gap);
   box-sizing: border-box;
}

.printable {
   width: var(--printable-width)
}

.leftnavi {
   background-color: var(--leftcol-bg);
   padding: 1rem;
   box-sizing: border-box;
}

.content {
   background-color: var(--content-bg);
   padding: 1rem;
   box-sizing: border-box;
   min-width: 630px;
}

.side {
   background-color: var(--rightcol-bg);
   padding: 1rem;
   box-sizing: border-box;
   position: relative;
}

.sidenote {
   background-color: var(--sidenote-bg);
   padding: 1rem;
   border-radius: 10px;
}


@media (max-width: 768px) {
    header {
        grid-template-columns: 1fr; /* one column only */
    }
    main {
        grid-template-columns: 1fr; /* one column only */
    }

    .leftnavi,
    .content,
    .side {
        width: 100%;
    }

    /* optional with gaps: */
    main {
        gap: 0.2rem;
    }
}



html
{
   /* next line force the scrollbar to appear even if the page is short! */
   /* this avoids horizontal shifting of the content between pages */
   height : 101%;
   font-size: var(--base-font-size);
}

/* ========================================================================= */
/* based on w3c recommendation */

address,
blockquote, 
body, dd, div, 
dl, dt, 
fieldset, form,
frame, frameset,
h1, h2, h3, h4, 
h5, h6, iframe, 
noframes, 
object, ol, p, 
ul, applet, 
center, dir, 
hr, menu, pre   { display: block }

li              { display: list-item }

head            { display: none }

table           { display: table }

tr              { display: table-row }

thead           { display: table-header-group }

tbody           { display: table-row-group }

tfoot           { display: table-footer-group }

col             { display: table-column }

colgroup        { display: table-column-group }

td, th          { display: table-cell }

caption         { display: table-caption }

th              { font-weight: bolder; text-align: center }

caption         { text-align: center }

body { 
   background-color: var(--body-bg); 
   font-family:var(--standard-font-family);
}


h1, h2, h3, h4, h5,
dt             { font-family:var(--header-font-family); }

blockquote      { margin-left: 40px; margin-right: 40px }

i, cite, em,
var, address    { font-style: italic }

pre, tt, code
kbd, samp       { font-family: var(--code-font-family) ; font-size:100%; }

pre             { white-space: pre }

big             { font-size: 1.17em }

small, sub, sup { font-size: .83em }

sub             { vertical-align: sub }

sup             { vertical-align: super }

del             { text-decoration: line-through }

hr              { border: 1px inset }

dir, menu   { margin-left: 0px; }

ol              { list-style-type: decimal }

ol ul, ul ol,
ul ul, ol ol    { margin-top: 0; margin-bottom: 0 }

ul, ol
{
   margin-left: 1em;
   padding-left: 1em;
/*	text-indent: -1em; */
}

dd
{
   margin-left: 1em;
   padding-left: 1em;
/*	text-indent: -1em; */
}

ins, .underlined { text-decoration: underline }

center { text-align: center }

/* br:before       { content: "\a" } */

dt { 
   font-size: 100%;
   margin-top: 8px;
}

pre {
   /* non-proportional font */
   /* list of fonts provides fallbacks if a font is not present */
   font-family: var(--code-font-family);

   /* font size, relative to body font size */
   font-size: 90%;
   
   font-weight: 300;

   /* color: black */
   color: #000;

   /* background color: gray */
   background-color: var(--code-bg);

   /* no margin */
   margin: 0;

   /* silver border, 1px wide */
   border: 1px solid silver;

   /* padding ("inner margin") settings are top - right - bottom - left */
   /* (think clockwise)                                                 */
   padding: 4px 4px 4px 4px;
}


li {
   margin-top: 0.5em;
   margin-left: 0em;
}

/*
li.folder {
  list-style: url('./list_folder.svg');
}

li.file {
  list-style: url('./list_file.svg');
}
*/

ul li {
  list-style: disc;
}

li.folder,
li.file {
  list-style: none;
  padding-left: 24px;
  position: relative;
}

li.folder::before,
li.file::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}

li.folder::before {
  background-image: url("./list_folder.svg");
}

li.file::before {
  background-image: url("./list_file.svg");
}




h1, h2, h3 {
   margin-bottom: 1em;
}

h3 {
   margin-top: 10px;
   padding-top: 5px;
}

li p {
   line-height: 1.2em;
   padding-top: 0px;
   padding-bottom: 0px;
   margin-top: 0px;
   margin-bottom: 0px;
}


h4 {
   margin-top: 20px;
}

h1, h2, h3, h4, h5 {
   line-height: 125%;
}

li p {
   line-height: 1.2em;
   padding-top: 0px;
   padding-bottom: 0px;
   margin-top: 0px;
   margin-bottom: 0px;
}


dt {
   margin-top: 1em;
}


.container {
   min-height: 800px;
   margin-bottom: 20px;
   padding: 0;
   font-size: 10pt;
   background-color: var(--main-bg);
}

/* Create three unequal columns that floats next to each other */

.column {
  float: left;
  padding: 10px;
}

.left {
   width: 190px;
   height: 100%;
   border-right: 1px solid #9999ff;
}

.right {
   width: calc((100% - 20px) / 2);
   min-width: 630px;
/*   border-left: 1px solid #9999ff; */
   margin-left:10px;
}


.middle {
   width: calc((100% - 20px) / 2);
   min-width: 630px;
}

.full {
   width: calc(100% - 20px); 
   min-width: 630px;
}



/* user content (payload) */

.content
{
   min-height: 600px; 
}
   
.content h2
{
   font-size: 150%; 
   color: var(--content-h1-color);
   margin: 0;
   padding-top: 1em;
   padding-bottom: 10px;
   font-weight: 600;
   line-height: 125%;
}

.content h3
{
   font-size: 150%; 
   color: var(--content-h1-color);
   margin: 0;
   padding-top: 1em;
   padding-bottom: 10px;
   line-height: 125%;
}
   
   
.content h4
{
   font-size: 110%; 
   font-weight: 600;
   color: var(--content-h1-color);
   margin: 0;
   padding-top: 1em;
   padding-bottom: 10px;
   line-height: 125%;
}

.content h5
{
   font-size: 100%; 
   font-weight: 600;
   color: var(--content-h1-color);
   margin: 0;
   padding-top: 1em;
   padding-bottom: 10px;
   margin-bottom: 10px;
   line-height: 125%;
}

.content h6
{
   font-size: 100%; 
   font-weight: 600;
   color: black;
   margin: 0;
   padding-top: 1em;
   padding-bottom: 10px;
   line-height: 125%;
}
   
.content 
{ 
   line-height: 150%; 
}

/* restart rendering */   
   
.cleardiv
{
   clear: both;
   height: 1em;
}

/* in-content page navigation area */

.pagenavigation
{
   margin-top: 20px;
}

.upnavigation
{
   background-image: url(upnavi.gif);
}

.downnavigation
{
   background-image: url(downnavi.gif);
}


.newnavigation
{
   background-image: url(rightnavi.gif);
/*   background-image: url(icon_page_add.png); */
}

.editnavigation
{
   background-image: url(icon_page_edit.png); 
}


.upnavigation, .downnavigation, .rightnavigation, .leftnavigation, .newnavigation, .editnavigation
{
   background-repeat: no-repeat; 
   padding-left: 26px;
   line-height: 26px
}


.interesting_navi
{
   background-image: url(rightnavi.gif);
   background-repeat: no-repeat; 
   margin-left: 10px;
   margin-right: 6px;
   margin-top: 20px;
   padding-right: 5px;
   padding-left: 26px;
}


/* teasers */

.teaser
{
   margin-left: 10px;
   margin-top: 10px;
   width: 90%;
   padding:10px;
   background-repeat: no-repeat; 
   border: 1px solid #000066;
   border-radius: 6px;
 }


.teaser h1
{
   font-weight: 600;
   font-size: 140%; 
   padding-top: 0px;
   margin-top: 0px;
   padding-bottom: 0px;
}

.teaser h2
{
   font-weight: 600;
   font-size: 120%; 
   padding-top: 0px;
   padding-bottom: 4px;
}

.teaser p 
{
   margin-top:5px;
   margin-left:10px;
   margin-right:10px;
   font-size: 100%; 
}

.teaser img
{
   width:100px;
   padding:4px;
   float:left;
}


/* sidekicks */

.sidekick
{
   margin-left: 0px;
   margin-right: 0px;
   margin-top: 4px;
   width: 100%;
   padding:6px;
   background-repeat: no-repeat; 
   border: 1px solid #000066;
   border-radius: 6px;
 }


.sidekick h1
{
   font-weight: 600;
   font-size: 140%; 
   padding-top: 0px;
   margin-top: 0px;
   padding-bottom: 0px;
}

.sidekick h2
{
   font-weight: 600;
   font-size: 120%; 
   padding-top: 0px;
   padding-bottom: 4px;
}

.sidekick p 
{
   margin-top:5px;
   margin-left:10px;
   margin-right:10px;
   font-size: 100%; 
}

.sidekickpicture
{
   width:100px;
   padding:4px;
   float:left;
}

.navtile, .navtile_empty, .navtile_disabled
{
   width:140px;
   margin-left:6px; 
   height:100%; 
   margin-top:0px; 
   float:left; 
   padding:5px;
   text-align:center;
   border-radius: 10px;

    /* Flexbox centering */
    display: flex;
    align-items: center;      /* Vertical */
    justify-content: center;  /* Horizontal */
   
}


.navtile_navi4 {
    color: black;
}

.navtile_empty
{
   margin-left:12px;
}

.navtile_text
{
   text-align:center;
}

.navtile_small_text
{
   text-align:center;
   color: black;
}

.navtile_small_text
{
   text-align:center;
   color: black;
}

.navtile_small_text:hover
{
   text-align:center;
   color: green;
}

.helpbutton
{
   margin-left:1em;
}

.helpbutton:hover
{
   background-color: orange;
}

a:hover .navtile , a:active .navtile , a:focus .navtile
{
   text-decoration: none;
   background-color: orange;
}

a:visited .navtile , a:visited .navtile_first
{
   text-decoration: none;
   color: black;
}

.navtile_disabled
{
   background-color:#dddddd;
   border: 1px solid #aaaaaa;
   color: #aaaaaa;
}

.navtile_green
{
   background-color:#ddffdd;
   border:1px solid green;
}

.navtile_red
{
   background-color:#ffdddd;
   border:1px solid red;
}


.navtile_blue
{
   background-color:#ddddff;
   border:1px solid blue;
}


.navtile_violet
{
   background-color:#ffddff;
   border:1px solid blue;
}


.navtile_cyan
{
   background-color:#ddffff;
   border:1px solid blue;
}

.navtile_row
{
   margin-top:20px;
   width:100%;
   height:60px;
   background-color:beige;
}

.navtile_row_navi4
{
   float: left;
   margin-top:20px;
   width:180px;
   height:60px;
}

.navtile_small
{
   margin-top:10px;
   margin-bottom:10px;
   width:120px;
   height:30px;
}

.navtile_mini
{
   margin-top:10px;
   margin-bottom:10px;
   width:30px;
   height:30px;
}

ul.navtile_small_line
{
   list-style: none;
   padding-left: 0;
   margin-left: 0;
}

.navtile_small_line li
{
   list-style: none;
   float: left;
   margin-right: 6px;
   padding-left: 6px;
}

a:hover .navtile_empty , a:active .navtile_empty , a:focus .navtile_empty , a:focus .navtile_disabled
{
}

a:hover .navtile_disabled , a:active .navtile_disabled , a:focus .navtile_disabled
{
}

.banner-text {
   font-size:2.5rem;
   font-weight: 600;
   position:absolute;
   top:6px;
   left: 40%;
   color: black;
}
   

.header h1, .header h2
{
   margin: 0;
   margin-left: 180px;
   margin-right: 200px;
}

.logo
{
   position:absolute;
   left: 5%;
   top: 10px;
   width: 60px;
}

.special
{
   float: left;
   margin-top:150px;
   margin-left:2px;
   width: 134px;
   padding: 10px 5px 5px 5px ;
   border: 1px solid #ffffff;
}

/* top navigation */
.navi1
{
   margin-right: 30em;
   margin-top:20px;
   float:right;
   height: 30px; 
   text-align: left;
   font-size: 100%;
   font-family: arial, sans-serif;
   color: black;
}



/* anchor elements in the single navigation entries if mouse-on*/

.navi1 li a:hover, .navi1 li a:active, .navi1 li a:focus
{
   text-decoration: none;
   color: #ffcc33;
   background-color: #9b3434;
}

.navi1 li a:visited
{
   text-decoration: none;
   color: black;
}

/* right column navigation */

.navi2
{
   position: absolute;
   bottom: 2em;
   width: 50%;
   color: black ;
}


.navtile_row_navi2
{
   margin-top:20px;
   height:60px;
   width: 100%;
}


.navtile_navi2
{
   width:150px;
   margin-right:15px;
   margin-top:0px;
   margin-left:0px;
   height:100%;
   float:left;
   padding:0px;
   text-align:center;
   color: black ;
}

.navi2 li a
{
   text-decoration: none;
   color: black;
}

.navi2 li a:hover, .navi2 li a:active, .navi2 li a:focus
{
   text-decoration: none;
   color: #ffffff;
   background-color: #00293c;
}

.navi2 li a:visited
{
   text-decoration: none;
   color: black;
}

/* left column tile navigation */
.navi4_tiles
{
   left: 10;
   width: 180px;
   top: 150px;
   color: black ;
}

/* navi4       = left column navigation */

.navi4
{
   float: left;
   padding-bottom: 20px;
   padding-top:0px;
   left: 30px;
   width: 180px;
   top: 100px;
   color: black ;
}


.navi4 li a
{
   text-decoration: none;
   color: black;
}

.navi4 li a:hover, .navi4 li a:active, .navi4 li a:focus
{
   text-decoration: none;
   color: #ffffff;
   background-color: #00293c;
}

.navi4 li a:visited
{
   text-decoration: none;
   color: black;
}


/* navigation menu levels */

.level1, .level1_more
{
   font-size: 100%;
   padding-top:5px;
   padding-left:22px;
   padding-bottom:5px;

   margin-top:0px;
/*   border: 1px solid; color: gray; */
}



.username
{
   position:absolute;
   left: 20px; 
   top: 110px;
   vertical-align: left;
   padding: 0;
   height:24px;
}

/* search area */

.search
{
   position:absolute;
   left: 50%; 
   top: 100px;
   vertical-align: middle;
   margin-left: 56px;
   padding: 0;
   height:24px;
/*   background-color: magenta; */
}

.search_label
{
   color: black;
   white-space: nowrap;
   padding-right: 10px;
   text-align: right;
   display:inline;
}

.search_in input
{
   background-color: #ffffee;
   display:inline;
}

.search_word input
{
   background-color: #ffffee;
   display:inline;
}

.s_word 
{
   color: red;
   font-weight: 600;
}

.s_result
{
   margin-top: 2em;
}

.s_found_title
{
   font-weight: 600 ;
}

/* "special" block */

.special h3
{
   margin-top: 0;
   color: #fff;
   padding: .2em;
   background-image: url(more_base.jpg);
   background-position: left;
   background-repeat: repeat-y;
}
   
/* -------------------------------------- */
/*   plain text                           */
/* -------------------------------------- */

.plain
{
/*   background-color: yellow;*/
   color: black;
   margin-top: -46px;
   padding-top: 0px;
   padding-left: 20px;
   padding-right: 40px;
/*   text-align: block; */
}

.plain h3
{
   color: black;
   font-size: 150%;
   font-weight: 600;
   margin-top: 3em;
   margin-bottom: 10px;
}


/* conditional text */

.conditional 
{
   border: 1px dotted green;
   padding: 10px;
}


.copyright
{
   height: 3em;
   margin-top: 5px;
/*   padding-left: 20px; */
   margin-left: 200px;
   text-align: left;
   font-size: 100%;
   color: gray;
/*   background-color:yellow; */
}

.image_right 
{ 
   float: right; 
   padding: 10px;
   margin: 10px 10px 10px 20px;
}

.image_left
{ 
   float: left; 
   padding: 10px;
   margin: 10px 20px 10px 10px;
}

.image_center
{ 
   padding: 10px;
   margin: 10px 20px 10px 10px;
/*   border: 1px solid silver; */ 
}


table
{
   border-collapse:collapse;
   empty-cells:show;
}

table td
{
   border: 1px solid silver;
   padding-left:  10px;
   padding-right: 4px;
}


table th
{
   font-weight:bold;
   border: 1px solid silver;
}

table p {
   line-height: 1em;
   padding-top: 0px;
   padding-bottom: 0px;
   margin-top: 0px;
   margin-bottom: 0px;
}




.table_lines
{
   border-collapse:collapse;
   empty-cells:show;
}

.table_lines tr
{
   border-bottom: 1px solid silver;
}


.table_lines td
{
   padding-left:  10px;
   padding-right: 4px;
}

.editlink
{
   position:absolute;
   left:140px;
   top:160px;
/*   border: 1px solid red; */

}

.system_msg
{
   margin-left: 50px;
   font-size: 120%;
   font-weight: 600;
   border: 1px solid #600;
   text-align:center;
   padding-top:150px;
   padding-bottom:150px;
}

/* -------------------------------------- */
/*   formulare                            */
/* -------------------------------------- */

.form_label
{
   color: black;
   white-space: nowrap;
   padding-right: 10px;
   padding-left: 4em;
   text-align: right;
   padding-top: 4px;
   padding-bottom: 4px;
}


.form_label_undef
{
   padding-top: 4px;
   padding-bottom: 4px;
   font-weight: 600;
   color: red;
   white-space: nowrap;
   padding-right: 10px;
   padding-left: 4em;
   text-align: right;
}

.form_in
{
   margin-top: 4px;
   margin-bottom: 4px;
}

.warn
{
/*   position: 50%; */  
   margin-left: 100px;
   width: 400px;
   border: 1px solid red;
   padding: 8px;
   margin-top: 20px;
   margin-bottom: 20px;
}


a:link 
{ 
   color: #036; 
   text-decoration: none;
}

a:visited 
{ 
   color: #066; 
   text-decoration: none;

}
   
a:hover, a:active
{
   color: #fff;
   background-color: #036; 
   text-decoration: none;
}


a img
{
   outline: none;
   text-decoration: none;
}

.question
{
   margin-top: 2em;
   font-weight:bold;
}

.answer
{
   margin-top: 1em;
   margin-left: 20px;
}

/* calendar */

td.cal_today
{
   background: #F0BF65;
}

td.cal_sunday
{
   background: #EB8B5B;
}

.calendarList td
{
   border-top: 1px solid silver;
}

.dayList, .dateList, .summaryList
{
   vertical-align: top;
}

.headlineList
{
   vertical-align: top;
   font-weight: 600;
   font-size: 100% ;
   padding-bottom: 4px;
   padding-top: 10px;
}


.info
{
   margin-top: 3em; 
   padding:10px; 
   border: 1px solid green;
}


#send_button
{
   margin-top: 4px;
}


/* manual specific */

ul.indentonly
{
	list-style: none;
	margin-left: 2em;
	padding-left: 1em;
	text-indent: -1em; 
}

span.button
{
   background-color: #ccc;
   border: 2px outset;
   padding: 4px 4px 4px 4px;
}


span.input
{
   border-left: 1px solid;
   border-right: 1px solid;
   border-bottom: 1px solid;
   background-color: #ddd;
   padding: 0px 5px 0px 5px;
}


span.code, span.filename
{
   font-family: "Courier New", Courier, Monospace;
   font-size: 90%;
   font-weight: 300;
   color: #000;
   margin: 0;
   padding: 4px 4px 4px 4px;
}


span.variable
{
   color: blue;
}

div
{
   margin-top: 4px;
   margin-bottom: 4px;
}

div.code
{
   display: block;
   white-space: pre;
   font-family: "Courier New", Courier, Monospace;
   font-size: 90%;
   font-weight: 300;
   color: #000;
   margin-top: 0.5em;
   margin-bottom: 0.5em;
/*   margin: 0; */
   padding: 4px 4px 4px 4px;
   background-color: #ddd;
   border: 1px solid silver;
   overflow-x: auto;
}

div.raw
{
   display: block;
   white-space: pre;
   font-family: "Courier New", Courier, Monospace; 
   font-size: 90%;
   font-weight: 300;
   color: #000;
   margin-top: 0.5em;
   margin-bottom: 0.5em;
}


.success
{
   margin-top: 20px;
   margin-bottom: 10px;
   padding: 6px 20px 6px 34px;
   border: 3px solid green;
   background-image:url(./ok_sign_transparent.png); background-repeat:no-repeat;background-position:2px 2px; 
}

.error
{
   margin-top: 20px;
   margin-bottom: 10px;
   padding: 6px 20px 6px 34px;
   border: 3px solid red;
   background-image:url(./nok_sign_transparent.png); background-repeat:no-repeat;background-position:2px 2px; 
}

.warning
{
   margin-top: 20px;
   margin-bottom: 10px;
   padding: 6px 20px 6px 34px;
   border: 3px solid orange;
   background-image:url(./warning.png); background-repeat:no-repeat;background-position:2px 2px;   
}



.info
{
   margin-top: 20px;
   margin-bottom: 10px;
   padding: 6px 20px 6px 34px;
   border-left: solid 1px;
   border-top: solid 1px;
   background-image:url(./note.png); background-repeat:no-repeat;background-position:2px 2px; 
}


/* =========================== */

.pagemenu-container {
  position: relative;   /* Bezugspunkt für Dropdown */
  display: inline-block;
}

.pagemenu-icon {
  cursor: pointer;
  font-size: 1.2em;     /* Symbol größer machen */
  padding: 0px; 
/*  background: #ddd;
  border-radius: 4px;
  */
}

.pagemenu-dropdown {
  display: none;
  position: absolute;
  bottom: 100%;         /* Menü direkt über dem Symbol */
  left: 0;
  background: white;
  border: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 150px;
  z-index: 1000;
}

.pagemenu-dropdown li {
  list-style: none;
  border-bottom: 1px solid #eee;
}

.pagemenu-dropdown li:last-child {
  border-bottom: none;
}

.pagemenu-dropdown li a {
  display: block;
  padding: 0.5em;
  text-decoration: none;
  color: #333;
}

.pagemenu-dropdown li a:hover {
  background: #f5f5f5;
}

/* Anzeige beim Hover über das Icon oder den Container */
.pagemenu-container:hover .pagemenu-dropdown {
  display: block;
}

/* Flyout-Panel für Einträge mit Unterinhalt (z.B. Datei-Upload) */
.pagemenu-has-panel {
  position: relative;
}

.pagemenu-panel-label {
  display: block;
  padding: 0.5em;
  cursor: default;
  color: #333;
  white-space: nowrap;
}

.pagemenu-has-panel:hover .pagemenu-panel-label {
  background: #f5f5f5;
}

.pagemenu-panel {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background: white;
  border: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  padding: 0.6em;
  min-width: 260px;
  z-index: 1001;
  white-space: nowrap;
}

.pagemenu-has-panel:hover .pagemenu-panel {
  display: block;
}

.pagemenu-upload-form {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

/* Zeile: [Durchsuchen-Button] [Dateiname] */
.pagemenu-file-row {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

/* nativer File-Input versteckt; wird über das Label ausgelöst */
.pagemenu-file-input {
  display: none;
}

/* "Durchsuchen"-Button — Aussehen per CSS anpassbar */
.pagemenu-upload-btn {
  display: inline-block;
  padding: 0.25em 0.6em;
  background: #f0f0f0;
  border: 1px solid #aaa;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.9em;
  white-space: nowrap;
  user-select: none;
}

.pagemenu-upload-btn:hover {
  background: #e0e0e0;
}

/* Anzeige des gewählten Dateinamens */
.pagemenu-file-name {
  font-size: 0.85em;
  color: #666;
  font-style: italic;
  max-width: 170px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* "Hochladen"-Button — Aussehen per CSS anpassbar */
.pagemenu-submit-btn {
  align-self: flex-start;
  padding: 0.3em 0.9em;
  background: #094481;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.9em;
}

.pagemenu-submit-btn:hover {
  background: #1261b8;
}
/* =========================== */





/* events */

.event_date
{
   font-size:1rem;
}            

.event_pageheader
{
   font-size: 150%; 
   color: #036;
   margin: 0;
   padding-top: 1em;
   font-weight: normal;
   line-height: 125%;
   border-bottom: 1px solid gray;
   margin-bottom: 20px;
   font-size:0.875rem ;
}
   
.event_headline_1
{
   padding-bottom:0px;
   font-size: 170%;
   font-weight: 600;
   color: #036;
   line-height: 100%;
}   
   
.event_headline_2
{
   padding-top:0px;
   font-size: 140%;
   border: none;
   color: #036;
}   


.uploadlink
{
   margin-top : 2em;
   margin-right: 10px;
   border: 1px solid gray;
   padding: 12px;
}



.gridStyle {
    border: 1px solid rgb(212,212,212);
    width: 600px; 
    height: 300px;
}



.thread-admin {
   border: 1px solid orange;
}


/* Threads */
.post, .mypost {
   width: 800;
   border: 1px solid #cccccc;
}

.posthdr, .myposthdr {
   width: 100px;
   margin-top: 0;
   padding: 0px 10px 0px 10px;
   font-size: 80%;
}

.posthdr {
    background-color: #ffc164;
}

.myposthdr {
    background-color: #4dc48e;
}

.postbody, .mypostbody {
   padding: 0px 10px 0px 10px; 
   margin-top: 4px;
   margin-bottom: 4px;
   line-height: 120%;
 
}

.postbody h5 {
   margin-top: 4px;
   margin-bottom: 4px;
}

.postbody p {
   margin-top: 4px;
/*   margin-bottom: 4px; */
   line-height: 120%;
}

.postaction {
   border-top: 1px solid black;
   color: red;
   padding-top: 0px;
   padding-bottom: 0px;
   margin-top: 0px;
   margin-bottom: 0px;
   line-height: 80%;
}

.oldpost {
   xborder: 2px solid yellow;
   border-left : 10px solid yellow;
   xdisplay: none;
}

.initialpost {
   border: 2px solid green;
}

.posteditable {
   background: #eeeeff;
}

.post_editor {
   border: 2px solid #ff6f39;
   padding: 4px;
}

.post_editor h5 {
   margin-top: 4px;
   margin-bottom: 4px;
}

.button {
  font: bold 14px Arial;
  background-color:#094481;
  border:1px solid #5286bd;
  border-radius:5px;
  color:#fff;
  padding:6px 6px 6px 6px;
  display:table-cell;
}

.marker {
   background-color: yellow;
   padding-left: 4px; 
   padding-right: 4px;
   margin-top: 0px;
   position: absolute;
   text-align: center;
}

.markeryellow {
   background-color: yellow;
}

.markergreen {
   background-color: green;
}

.markerred {
   background-color: red;
}

.newposts {
   color: #ff4500;
}

.wikimultifolder_section
{
   font-size: 110%; 
   font-weight: 600;
   color: #00293c;
   margin: 0;
   padding-top: 1em;
   padding-bottom: 10px;
   line-height: 125%;
   background-color: #eef;
}

.wikimultifolder_header_sym
{
   font-size: 140%; 
   font-weight: 600;
   color: #00293c;
   padding-top: 1em;
   padding-bottom: 10px;
   line-height: 125%;
}

wikimultifolder_header_text {
}

.wikimultifolder table, .wikimultifolder_section table {
   border: none;
}

.wikimultifolder table tr:hover,  .wikimultifolder_section:hover {
   background-color: #eee;
}

.add_section {
   margin-left:200px;
   width: 750px;
}

/* Issues */

.issue-status {
  margin-left: 6px;
  display: inline-block;
  padding: 0px 4px;
  border-radius: 5px;
  font-family: var(--mono);
  text-transform: uppercase;
  font-weight: 600;
}

.issue-status-open   { color: var(--status-open); background-color: var(--status-open-bg);}
.issue-status-closed { color: var(--status-closed); background-color: var(--status-closed-bg);}

/* Status-Badges (issues, threads, minutes) — global verfügbar */
.status-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  font-family: monospace;
  font-size:0.625rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  vertical-align: middle;
}
.status-open     { background: #c8e8d6; color: #0e4d26; }
.status-closed   { background: #e8e4de; color: #5a554e; }
.status-active   { background: #c8e8d6; color: #0e4d26; }
.status-archived { background: #e8e4de; color: #5a554e; }
.status-draft    { background: #f5e8c0; color: #7a5600; }

.page-link-btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  margin: 0.8rem 0;
  background-color: var(--applink-bg);
  border: 1px solid var(--applink-bg);
  border-radius: 6px;
  color: black;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
}

.page-link-btn:hover {
  background-color: var(--color-dark);
  border-color: var(--color-dark);
  color: white;
  text-decoration: none;
}

/* NewLinkedPage: Modal-Dialog */
.nlp-dialog {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 1.5rem 2rem;
  min-width: 420px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.nlp-dialog h3 {
  margin-top: 0;
}
.nlp-dialog input[type=text] {
  width: 100%;
  padding: 0.35rem 0.5rem;
  font-size: 1rem;
  border: 1px solid #aaa;
  border-radius: 4px;
}
.nlp-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.nlp-dialog::backdrop {
  background: rgba(0,0,0,0.35);
}

/* ── PersonSelect ──────────────────────────────────────────── */
.ps-container {
  font-size: 0.9rem;
}
.ps-form-actions {
  margin: 0.5rem 0;
  display: flex;
  gap: 0.5rem;
}
.session_msg {
  color: #1a5c1a;
  font-weight: bold;
  padding: 0.5rem 0.8rem;
  background: #efffef;
  border: 1px solid #6c6;
  border-radius: 4px;
  margin: 0.5rem 0 1rem;
}
.ps-ok-msg {
  color: green;
  font-weight: bold;
  padding: 0.4rem 0.6rem;
  background: #efffef;
  border: 1px solid #9c9;
  border-radius: 3px;
  margin-bottom: 0.5rem;
}
.ps-hint {
  color: #666;
  font-style: italic;
}
.ps-warn {
  color: #7a3000;
  font-weight: bold;
  padding: 0.4rem 0.6rem;
  background: #fff8e6;
  border: 1px solid #e0a030;
  border-radius: 3px;
  margin-bottom: 0.5rem;
}
.ps-count {
  margin: 0.5rem 0 0.3rem;
}
.ps-result-table {
  width: 100%;
  margin-bottom: 0.5rem;
}
.ps-pagination {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 0.5rem 0;
}
.ps-sel-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin: 0.5rem 0;
}
#ps-sel-count {
  color: #555;
  font-size: 0.85rem;
}
/* Query-Builder */
.ps-qb-table {
  border-collapse: collapse;
  margin-bottom: 0.5rem;
}
.ps-qb-row td {
  padding: 0.25rem 0.4rem;
  vertical-align: middle;
}
.ps-qb-link-cell {
  white-space: nowrap;
  padding-right: 0.5rem;
}
.ps-qb-link-first {
  min-width: 5em;
}
.ps-qb-field {
  min-width: 220px;
}
.ps-qb-link {
  font-weight: bold;
}
.ps-qb-multi {
  min-width: 200px;
  max-width: 350px;
}

/* App link tiles (NavTile2 processor) */
.applink {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 400px;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  border: 1px solid var(--applink-bg);
  background-color: var(--applink-bg);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 35px;
  border-bottom-right-radius: 35px;
  text-decoration: none;
  font-size: 1.2rem;
  color: black;
}

.applink img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 10px;
}

.applink:hover {
  text-decoration: none;
  background-color: var(--color-dark);
  color: white;
}

.applink_disabled {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 400px;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  border: 1px solid var(--applink-bg-disabled);
  background-color: var(--applink-bg-disabled);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 35px;
  border-bottom-right-radius: 35px;
}

.applink_disabled img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 10px;
}

.applink_disabled .text {
  text-decoration: none;
  font-size: 1.2rem;
  color: var(--text-disabled);
}

/* ── User widget (header login / user dropdown) ────────────────────────────── */
.user-widget {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
}

/* :link specificity (0,1,1) would override a plain class — use header context */
header .user-widget-login,
header .user-widget-login:link,
header .user-widget-login:visited {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #fff;
  text-decoration: none;
  padding: 0.25rem 0.7rem;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 4px;
  font-size: 0.9rem;
  white-space: nowrap;
}
header .user-widget-login:hover,
header .user-widget-login:active {
  background: rgba(255,255,255,0.2);
  color: #fff;
  text-decoration: none;
}

.user-widget-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  padding: 0.25rem 0.7rem;
  font-size: 0.9rem;
  white-space: nowrap;
  font-family: inherit;
}
.user-widget-btn:hover {
  background: rgba(255,255,255,0.28);
}

.user-widget-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  list-style: none;
  margin: 0;
  padding: 0.3rem 0;
  min-width: 160px;
  z-index: 200;
}
.user-widget.uw-open .user-widget-menu {
  display: block;
}
.user-widget-menu li {
  list-style: none;
}
.user-widget-menu li a {
  display: block;
  padding: 0.45rem 1rem;
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  white-space: nowrap;
}
.user-widget-menu li a:hover {
  background: var(--accent-xl, #eef2ee);
  color: #333;
  text-decoration: none;
}
.user-widget-menu li + li {
  border-top: 1px solid #eee;
}

/* ── Buttons ──────────────────────────────────────────────────────── */
button, input[type="submit"], input[type="button"], input[type="reset"] {
   display: inline-flex;
   align-items: center;
   gap: 4px;
   padding: 5px 14px;
   font-size:0.8125rem;
   font-family: inherit;
   line-height: 1.4;
   border: 1px solid var(--border2, #aaa);
   border-radius: 4px;
   background: var(--bg, #f0efec);
   color: var(--text-2, #333);
   cursor: pointer;
   white-space: nowrap;
   vertical-align: middle;
   box-sizing: border-box;
   text-decoration: none;
}
button:hover, input[type="submit"]:hover, input[type="button"]:hover, input[type="reset"]:hover {
   background: #e4e1db;
   border-color: var(--text-3, #888);
}
a.btn {
   display: inline-flex;
   align-items: center;
   gap: 4px;
   padding: 5px 14px;
   font-size:0.8125rem;
   font-family: inherit;
   line-height: 1.4;
   border: 1px solid var(--border2, #aaa);
   border-radius: 4px;
   background: var(--bg, #f0efec);
   color: var(--text-2, #333);
   cursor: pointer;
   white-space: nowrap;
   vertical-align: middle;
   box-sizing: border-box;
   text-decoration: none;
}
a.btn:hover { background: #e4e1db; border-color: var(--text-3, #888); color: var(--text-2, #333); text-decoration: none; }
.btn-primary {
   background: var(--accent, #1a3a2e);
   border-color: var(--accent, #1a3a2e);
   color: #fff;
   font-weight: 600;
}
.btn-primary:hover { background: #122a20; border-color: #122a20; color: #fff; }
.btn-danger {
   background: #b92c2c;
   border-color: #9a2424;
   color: #fff;
   font-weight: 600;
}
.btn-danger:hover { background: #9a2424; border-color: #7d1d1d; color: #fff; }
.btn-sm { padding: 2px 8px; font-size:0.75rem; }
@media print { button, input[type="submit"], input[type="button"], a.btn { display: none !important; } }
