/* IsIgoingTV color table */
:root {
    --green_bright: #6ea68f;
    --green_dark:  #375343e;
    --gray_dark: #444343;
    --red_dark: #ba0101;
    --black: #000000;
    --yellow_bright: #f2ec10;
    --font: "Arial";
}

.btn-custom-yellow {
    background-color: var(--yellow_bright) !important;
    border-color: var(--yellow_bright) !important;
    color: #000 !important; /* Schwarzer Text für besseren Kontrast */
}
.btn-custom-yellow:hover {
    background-color: #e0d80e !important; /* Etwas dunkler beim Hover */
    border-color: #e0d80e !important;
}
.btn-custom-yellow:focus {
    box-shadow: 0 0 0 0.25rem rgba(242, 236, 16, 0.5) !important;
}

/* General */
html {
    font-family: var(--font);
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

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

.main {
    display: flex;
    width: 100%;
    background: var(--green_bright); /* Hier ist deine Hintergrundfarbe */
    border-top: 2px solid var(--green_dark);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--green_bright);
    margin-top: 0;
    margin-bottom: 0.5rem;
}

/* Header */
.header {
    /* 1. Layout */
    height: 40px;
    width: calc(100% - 40px);
    margin-top: 5px;
    margin-left: 25px;
    position: fixed;

    /* 2. Styling & Farben */
    background-color: var(--gray_dark);
    color: var(--yellow_bright);

    /* 3. Optic */
    box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.6);
    border-radius: 5px;
}
.header .title{
    color: var(--yellow_bright);
    text-align: center;
    font-size: 25px;
    padding: 6px 8px 6px 16px;
}


/* Sidebar */
.side_nav {
    /* 1. Layout */
    width: 150px;
    min-height: 90vh;
    margin-top: 50px;
    margin-left: 25px;
    position: fixed;

    /* 2. Styling & Farben */
    background-color: var(--gray_dark);

    /* 3. Optic */
    box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.6);
    border-radius: 5px;

}
.side_nav a {
    color: var(--green_bright);
    font-size: 25px;
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    display: block;
}


/* Content */
.content {
    /* 1. Layout */
    flex: 1;
    min-height: 90vh;
    margin-top: 30px;
    margin-left: 160px;

    /* 2. Styling & Farben */
    background-color: var(--gray_dark);
    color: var(--green_bright);
    font-size: 25px;
    text-align: left;

    /* 3. Optic */
    box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.6);
    border-radius: 5px;
    padding: 20px; /* Ein bisschen Platz für den Text innen */

    /* Hintergrund (falls du ein Bild nutzt) */
    background-size: cover;
    background-position: center center;
}

.content .admin {
    color: var(--yellow_bright);
    margin-bottom: 10px;
    font-size: 25px;
    font-weight: 700;
    padding: 6px 8px 6px 16px;
}
.content .admin a {
    color: var(--yellow_bright);
}
.content .title{
    margin-bottom: 10px;
    font-size: 25px;
    font-weight: 700;
    padding: 6px 8px 6px 16px;
}
.content .image{
    margin-bottom: 10px;
    background-size: cover;
    background-position: center center;
    padding: 6px 8px 6px 16px;
}
.content .description{
    margin-bottom: 10px;
    background-size: cover;
    background-position: center center;
    padding: 6px 8px 6px 16px;
}
.content .reference{
    margin-bottom: 10px;
    padding: 6px 8px 6px 16px;
}
.content .status{
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 8px 6px 16px;
}
.content .tags{
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 8px 6px 16px;
}
.content .date{
    margin-bottom: 0px;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 8px 6px 16px;
}

/* Footer */
.footer {
    background-color: var(--gray_dark);
    color: var(--green_bright);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    padding: 10px;
    width: 100%;
}

/* unvisited link */
a:link {
    color: var(--green_bright);
}
/* visited link */
a:visited {
    color: var(--green_bright);
}
/* mouse over link */
a:hover {
    color: var(--green_bright);
}
/* selected link */
a:active {
    color: var(--green_bright);
}