/* Size for brand */
nav .navbar-brand
{
    font-size: large;
}

/* Colors for brand */
nav .navbar-brand .blue
{
    color: #537fbe;
}
nav .navbar-brand .red
{
    color: #ea433b;
}
nav .navbar-brand .yellow
{
    color: #f5b82e;
}
nav .navbar-brand .green
{
    color: #2e944b;
}

tfoot, tfoot tr, tfoot td {
    border: none;
}

.padded-div {
    padding: 10px; /* Adds 20px of inner space on all sides */
    border: 1px solid black; /* Adds a border to show the edge of the div */
    background-color: rgb(212, 242, 216); /* Background color to visualize padding */
}

.table-home {
    width: 600px;
}

.table-cell {
    width: 300px;
}

.tr.underline-row td {
    border-bottom: 1px solid black; /* Adds an underline to the row */
}

.underlined-table {
    width: 600px;
    border-collapse: collapse; /* Ensure borders collapse */
}

.underlined-table tr td {
    border-bottom: 2px solid #add8e6; /* Pale blue underline */
    padding: 3px; /* Optional padding for better spacing */
}

.wert {
    text-align: right;
}

.titel {
    text-align: center;
    padding-bottom: 20px;
}

.legende {
    font-size: smaller;
    font-style: italic;
    padding-right: 5 px;
    padding-bottom: 10 px;
    width: 100px;
}

.legende2 {
    font-size: smaller;
    padding-top: 10 px;
}

.bisher {
    background-color: white;
    width: 300px;
}

.neu {
    background-color: lightblue;
    padding-left:10 px;
    width: 300px;

}
.entry_form label {
    margin-bottom: 10px;
    margin-right: 5px;
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Make the main content grow and fill the available space */
main {
    flex: 1;
}

/* Footer styles */
footer {
    text-align: center;
    padding: 10px;
    background-color: #f8f9fa;  /* Optional: give the footer a light background */
    width: 100%;
}

.footer {
    margin-bottom: 0;
}

/* Add these styles to your styles.css file */

.changelog-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 350px;
    max-height: 400px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    overflow-y: auto;
    z-index: 1000;
}

.changelog-container h4 {
    margin-top: 0;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 8px;
    color: #495057;
}

.changelog-entries {
    margin-top: 10px;
}

.changelog-entry {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}

.changelog-entry:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.changelog-header {
    margin-bottom: 5px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.changelog-date {
    font-size: 0.85rem;
    color: #6c757d;
}

.changelog-update {
    background-color: #dc3545;
    color: white;
    font-size: 0.8rem;
    padding: 2px 5px;
    border-radius: 3px;
}

.changelog-title {
    font-weight: bold;
    color: #495057;
}

.changelog-text {
    font-size: 0.9rem;
    color: #6c757d;
}

.changelog-more {
    font-size: 0.8rem;
    margin-left: 5px;
}

.changelog-content {
    white-space: pre-line;
}

@media (max-width: 768px) {
    .changelog-container {
        position: static;
        width: 100%;
        max-height: none;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}