body {
    margin: 0;
    background: url('../../static/img/desktop-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

#desktop {
    width: 100vw;
    height: 100vh;
    position: relative;
}

/* Container für Zeilen */
.row {
    display: flex;
    flex-wrap: wrap; /* Zeilen umbrechen, wenn der Platz nicht ausreicht */
    margin-left: -10px; /* Negativer Rand für gleichmäßige Abstände */
    margin-right: -10px;
}

/* Container für Zeilen */
.row-center {
    display: flex;
    align-items: center;
    flex-wrap: wrap; /* Zeilen umbrechen, wenn der Platz nicht ausreicht */
    margin-left: -10px; /* Negativer Rand für gleichmäßige Abstände */
    margin-right: -10px;
}

/* Spalten */
.col {
    flex: 1; /* Alle Spalten gleich groß */
    padding-left: 10px; /* Innenabstand */
    padding-right: 10px;
}

/* Optionale Größenklassen */
.col-1 { flex: 0 0 8.33%; max-width: 8.33%; }
.col-2 { flex: 0 0 16.66%; max-width: 16.66%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.33%; max-width: 33.33%; }
.col-5 { flex: 0 0 41.66%; max-width: 41.66%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.33%; max-width: 58.33%; }
.col-8 { flex: 0 0 66.66%; max-width: 66.66%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.33%; max-width: 83.33%; }
.col-11 { flex: 0 0 91.66%; max-width: 91.66%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* Colors */

.bg-blue {
    background: #007AFF;
}

.bg-green {
    background: #00a65a;
}

.bg-red {
    background: #dc3545;
}

.bg-grey {
    background: #6c757d;
}

.bg-lightgrey {
    background: #f8f9fa;
}

.bg-darkgray {
    background: #2C2C2E;
}
.bg-black {
    background: #2C2C2E;
}

.bg-orange {
    background: #FF8C00;
}

.bg-yellow {
    background: #FFC107;
}

.bg-orange-striped {
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 165, 0, 1) 0, /* fully opaque orange */
        rgba(255, 165, 0, 1) 3px,
        rgba(44, 44, 46, 1) 3px,
        rgba(44, 44, 46, 1) 10px
    ) !important;
}

.AppTrailTableContent a {
    color: #66b3ff;          /* helle Linkfarbe */
    text-decoration: none;   /* optional */
}