/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'MS Sans Serif', sans-serif;
    font-size: 12px;
    overflow: hidden;
    background: #008080;
    cursor: url('./assets/cursor_png.png'), auto;
}

/* Boot Screen */
.boot-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #1d1d1d;
    background-size: cover;
    color: #c0c0c0;
    font-family: 'MS Sans Serif', sans-serif;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.boot-container {
    text-align: center;
    width: 400px;
}

#bootLogo {
    text-align: center;
    margin-bottom: 20px;
}

#bootLogo img {
    width: 120px;
    height: auto;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
    image-rendering: pixelated;
}

.windows-logo {
    margin-bottom: 40px;
}

.logo-text {
    font-size: 46px;
    font-weight: bold;
    color: #02A5FF;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 5px;
}

.logo-subtext {
    font-size: 34px;
    color: #FFCC00;
    font-weight: bold;
}

.boot-messages {
    margin: 30px 0;
    min-height: 100px;
    text-align: left;
}

.boot-text {
    font-size: 14px;
    margin: 4px 0;
    color: #c0c0c0;
}

.boot-credit {
    font-size: 12px;
    margin: 8px 8px;
    color: #c0c0c0;
}

.loading-section {
    margin-top: 30px;
}

.loading-text {
    font-size: 14px;
    margin-bottom: 14px;
    color: #c0c0c0;
    font-family: 'MS Sans Serif', sans-serif;
}

.progress-container {
    width: 100%;
    height: 20px;
    background: #ffffff;
    border: 2px inset #c0c0c0;
    position: relative;
}

.progress-bar {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0000ff 0%, #8080ff 50%, #0000ff 100%);
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Shutdown Screen */
.shutdown-screen {
    position: fixed;
    top: 0;
    left: 0;
    background: #000;
    color: #c0c0c0;
    width: 100vw;
    height: 100vh;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: 'MS Sans Serif', sans-serif;
}
.shutdown-container {
    text-align: center;
    font-size: 14px;
}

.shutdown-container img {
    width: 400px;
    height: auto;
    margin-bottom: 20px;
}

#Shutdown-message {
    font-size: 18px;
    margin-bottom: 20px;
    color: #c0c0c0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Desktop */
.desktop {
    width: 100vw;
    height: calc(100vh - 40px); /* Desktop nimmt den Platz über der Taskleiste ein */
    background: linear-gradient(45deg, #008080, #004040);
    position: relative;
    display: block;
    padding: 10px;
    overflow: hidden; /* Wichtig, falls Icons außerhalb des sichtbaren Bereichs sind */
}

/* Desktop Icons Container - KEIN GRID! */
.desktop-icons {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Desktop Icons - Absolute Positionierung für Drag & Drop */
.desktop-icon {
    position: absolute !important; /* Wichtig für Drag & Drop */
    width: 64px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-align: center;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    padding: 4px;
    border-radius: 2px;
    user-select: none;
    min-height: 80px;
    transition: background 0.1s ease; /* Übergang für Hover-Effekt */
}

/* Standard-Positionen für Icons (Grid-ähnlich) */
.desktop-icon:nth-child(1) { top: 10px; left: 10px; }
.desktop-icon:nth-child(2) { top: 10px; left: 95px; }
.desktop-icon:nth-child(3) { top: 10px; left: 180px; }
.desktop-icon:nth-child(4) { top: 10px; left: 265px; }
.desktop-icon:nth-child(5) { top: 10px; left: 350px; }
.desktop-icon:nth-child(6) { top: 10px; left: 435px; }
.desktop-icon:nth-child(7) { top: 105px; left: 10px; }
.desktop-icon:nth-child(8) { top: 105px; left: 95px; }
.desktop-icon:nth-child(9) { top: 105px; left: 180px; }
.desktop-icon:nth-child(10) { top: 105px; left: 265px; }
.desktop-icon:nth-child(11) { top: 105px; left: 350px; } /* Neues Paint Icon */


/* Responsive Positionen */
@media (max-width: 768px) {
    .desktop-icon:nth-child(1) { top: 10px; left: 10px; }
    .desktop-icon:nth-child(2) { top: 10px; left: 85px; }
    .desktop-icon:nth-child(3) { top: 10px; left: 160px; }
    .desktop-icon:nth-child(4) { top: 10px; left: 235px; }
    .desktop-icon:nth-child(5) { top: 105px; left: 10px; }
    .desktop-icon:nth-child(6) { top: 105px; left: 85px; }
    .desktop-icon:nth-child(7) { top: 105px; left: 160px; }
    .desktop-icon:nth-child(8) { top: 105px; left: 235px; }
    .desktop-icon:nth-child(9) { top: 200px; left: 10px; }
    .desktop-icon:nth-child(10) { top: 200px; left: 85px; }
    .desktop-icon:nth-child(11) { top: 200px; left: 160px; } /* Neues Paint Icon */
}

@media (max-width: 480px) {
    .desktop-icon {
        width: 54px;
        height: 70px;
    }
    .desktop-icon:nth-child(1) { top: 10px; left: 10px; }
    .desktop-icon:nth-child(2) { top: 10px; left: 75px; }
    .desktop-icon:nth-child(3) { top: 10px; left: 140px; }
    .desktop-icon:nth-child(4) { top: 95px; left: 10px; }
    .desktop-icon:nth-child(5) { top: 95px; left: 75px; }
    .desktop-icon:nth-child(6) { top: 95px; left: 140px; }
    .desktop-icon:nth-child(7) { top: 180px; left: 10px; }
    .desktop-icon:nth-child(8) { top: 180px; left: 75px; }
    .desktop-icon:nth-child(9) { top: 180px; left: 140px; }
    .desktop-icon:nth-child(10) { top: 265px; left: 10px; }
    .desktop-icon:nth-child(11) { top: 265px; left: 75px; } /* Neues Paint Icon */
}

/* Icon States */
.desktop-icon:hover {
    background: rgba(255,255,255,0.1);
}

.desktop-icon.selected {
    background: rgba(0,0,255,0.3);
    border: 1px dotted white;
}

/* Icon Content */
.icon-image {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 4px;
}

.icon-label {
    font-size: 12px;
    line-height: 12px;
    word-wrap: break-word;
    max-width: 60px;
}

/* Desktop Icon Drag States */
.desktop-icon.dragging {
    opacity: 0.6;
    transform: rotate(2deg);
    z-index: 999;
    border: 1px dashed white;
}

.desktop-icon.drag-over {
    background: rgba(255,255,0,0.3) !important;
    border: 2px dashed yellow;
}

/* Desktop-Icons verstecken, wenn ein Fenster maximiert ist */
.desktop.hide-icons .desktop-icon {
    display: none;
}


/* Taskbar */
.taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: #c0c0c0;
    border-top: 1px solid #dfdfdf;
    display: flex;
    align-items: center;
    z-index: 100;
    box-shadow: inset 0 1px 0 #ffffff, inset 0 -1px 0 #808080;
}

.start-button {
    height: 32px;
    background: #c0c0c0;
    border: 2px outset #c0c0c0;
    padding: 0 8px 0 4px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 11px;
    margin: 0 2px;
    gap: 4px;
}

.start-button:active {
    border: 2px inset #c0c0c0;
}

.start-button.active {
    border: 2px inset #c0c0c0;
    background: #a0a0a0;
}

.start-icon {
    width: 16px;
    height: 16px;
}

.taskbar-programs {
    flex: 1;
    display: flex;
    padding: 4px 4px;
    gap: 4px;
    overflow-x: auto; /* Erlaubt Scrollen, wenn zu viele Fenster offen sind */
    -webkit-overflow-scrolling: touch; /* Für flüssiges Scrollen auf Touch-Geräten */
}

/* Neuer Stil für die Taskbar-Buttons der offenen Fenster */
.taskbar-program-button {
    height: 32px;
    background: #c0c0c0;
    border: 2px outset #c0c0c0;
    padding: 0 8px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 11px;
    max-width: 150px;
    overflow: hidden;
    white-space: nowrap;
    z-index: 500;
    margin-right: 4px; /* Abstand zwischen den Buttons */
    flex-shrink: 0; /* Verhindert, dass die Buttons schrumpfen */
}

.taskbar-program-button.active {
    border: 2px inset #c0c0c0;
    background: #a0a0a0;
}


.system-tray {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 4px;
    border: 2px inset #c0c0c0;
    height: 32px;
    background: #c0c0c0;
    flex-shrink: 0; /* Verhindert, dass der System-Tray schrumpft */
}

.tray-icons {
    display: flex;
    gap: 2px;
}

.tray-icon {
    width: 16px;
    height: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin: 0px 4px;
}


.clock {
    position: static;
    font-size: 11px;
    padding: 2px 8px;
    min-width: 60px;
    text-align: center;
    background: #c0c0c0;
    color: #000000;
    font-weight: normal;
    border: 1px inset #c0c0c0;
    cursor: pointer;
    font-family: 'MS Sans Serif', sans-serif;
}

/* Start Menu */
.start-menu {
    position: fixed;
    bottom: 40px;
    left: 0;
    width: 280px;
    background: #c0c0c0;
    border: 2px outset #c0c0c0;
    display: none;
    z-index: 200;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.start-menu-sidebar {
    background: linear-gradient(180deg, #0080ff, #0060c0);
    color: white;
    padding: 8px;
    width: 36px;
    float: left;
    min-height:400px; /* Kann angepasst werden, oder per JS dynamisch gesetzt */
    display: flex;
    flex-direction: column;
    justify-content: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.start-menu-title {
    font-weight: bold;
    font-size: 16px;
}

.start-menu-version {
    font-size: 14px;
    opacity: 0.8;
}

.start-menu-content {
    margin-left: 36px;
    padding: 8px 0;
}

.start-menu-item {
    padding: 8px 16px 8px 40px;
    cursor: pointer;
    font-size: 14px;
    position: relative;
    display: flex;
    align-items: left;
    gap: 12px;
    height: 32px;
    white-space: nowrap; /* Verhindert Zeilenumbruch im Startmenü */
}

.start-menu-item:hover {
    background: #0080ff;
    color: white;
}

.start-menu-icon {
    position: absolute;
    left: 8px;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    display:flex;
    align-items: center;
    justify-content: center;

}

.start-menu-separator {
    height: 1px;
    background: #808080;
    margin: 4px 8px;
    border-bottom: 1px solid #ffffff;
}

.start-menu-icon img {
    width: 16px;
    height: 16px;
    object-fit: contain; /* Stellt sicher, dass Icons nicht verzerrt werden */
}

/* Taskbar Icons einheitliche Größe */
.windows-icon, 
.folder-icon,
.note-icon,
.info-icon,
.settings-icon,
.shutdown-icon,
.calc-icon,
.programs-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
/* Spezifisch für Start-Button-Icon, falls es 16px sein soll */
.start-button .start-icon {
    width: 16px;
    height: 16px;
}


/* Popup Stylings Taskbar*/
.tray-popup {
    position: fixed;
    bottom: 50px;
    right: 10px;
    background: #c0c0c0;
    border: 2px outset #fff;
    padding: 12px;
    font-size: 12px;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    display: none;
    z-index: 9999;
    min-width:120px;
}

.tray-popup.show {
    display: block;
}

/* VOLUME POPUP Slider Größe */
.volume-popup {
    width: 180px;
    padding: 12px;
}

.volume-slider {
    width: 120px;
    height: 24px;
    background: #dfdfdf;
    border: 2px inset #c0c0c0;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #c0c0c0;
    border: 1px outset #c0c0c0;
    cursor: pointer;
    border-radius: 0;
}

.volume-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #c0c0c0;
    border: 1px outset #c0c0c0;
    cursor: pointer;
    border-radius: 0;
}

.volume-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.mute-button {
    background: #c0c0c0 !important;
    border: 2px outset #c0c0c0 !important;
    font-size: 14px !important;
    cursor: pointer;
    padding: 4px 8px !important;
    min-width: 40px !important;
    height: 28px !important;
}

.mute-button:active {
    border: 2px inset #c0c0c0 !important;
}


/* Windows */
.window {
    position: fixed;
    background: #c0c0c0;
    border: 2px outset #c0c0c0;
    /* Angepasste Mindestgrößen für Modals (ca. 25% größer) */
    min-width: 500px; /* Von 400px auf 500px */
    min-height: 375px; /* Von 300px auf 375px */
    z-index: 300; /* Basis Z-Index */
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    transition: box-shadow 0.2s ease, width 0.3s ease, height 0.3s ease, top 0.3s ease, left 0.3s ease, transform 0.3s ease; /* Übergänge für flüssigere Animationen */
    display: none; /* Standardmäßig alle Fenster verstecken */
    flex-direction: column; /* Wichtig, um Title-Bar und Body zu layouten */
}

/* Fenster beim Öffnen anzeigen */
.window.open {
    display: flex;
}

/* Aktives Fenster (im Vordergrund) */
.window.active {
    z-index: 999; /* Höherer Z-Index, wenn aktiv */
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.6);
}

/* Maximierter Zustand (angepasst auf 80%) */
.window.maximized {
    top: 50% !important;
    left: 50% !important;
    width: 80vw !important; /* 80% der Viewport-Breite */
    height: calc(80vh - 40px) !important; /* 80% der Viewport-Höhe minus Taskleiste */
    transform: translate(-50%, -50%) !important; /* Zentrierung */
    border: 2px outset #c0c0c0 !important; /* Rahmen beibehalten */
    border-radius: 0 !important;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3) !important;
    min-width: unset !important;
    min-height: unset !important;
}


/* Minimierter Zustand */
.window.minimized {
    display: none !important; /* Vollständig verstecken, wenn minimiert */
}

.title-bar {
    height: 24px;
    background: linear-gradient(90deg, #0080ff, #0060c0);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
    flex-shrink: 0; /* Verhindert, dass die Titelzeile schrumpft */
    cursor: grab; /* Cursor für Dragging */
}

.title-bar-text {
    font-size: 11px;
    font-weight: bold;
    padding-left: 4px;
    white-space: nowrap; /* Verhindert Umbruch des Titels */
    overflow: hidden; /* Versteckt überlaufenden Text */
    text-overflow: ellipsis; /* Fügt ... hinzu, wenn Text zu lang ist */
}

.title-bar-controls {
    display: flex;
    gap: 2px;
}

.title-bar-controls button {
    width: 16px;
    height: 16px;
    background: #c0c0c0;
    border: 1px outset #c0c0c0;
    font-size: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-bar-controls button:active {
    border: 1px inset #c0c0c0;
}

.window-body {
    padding: 8px;
    background: #c0c0c0;
    flex: 1; /* Nimmt den restlichen Platz im Fenster ein */
    display: flex; /* Muss flex sein, damit der Inhalt sich ausdehnen kann */
    flex-direction: column; /* Inhalt vertikal anordnen */
    height: calc(100% - 24px); /* Fensterhöhe - Titelleistenhöhe */
    overflow: hidden; /* Verhindert Scrollbalken auf dem Window-Body selbst */
}

/* CMD Specific */
.cmd-body {
    background: #000;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    padding: 8px;
    height: 100%; /* Passt sich der Flexbox des window-body an */
    overflow-y: auto; /* Scrollen innerhalb des CMD-Inhalts */
    font-size: 12px; /* Einheitliche Schriftgröße im CMD */
}

.cmd-content {
    height: 100%;
    white-space: pre-wrap;
}

.cmd-line {
    margin: 2px 0;
    /* font-size: 12px; -> wird jetzt vom Parent .cmd-body geerbt */
    white-space: pre-wrap;
}

/* Konsole blinkender Cursor */
.cmd-line.blinking-cursor::after {
    content: '_';
    animation: blink-caret .75s step-end infinite;
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #00ff00; }
}

/* Content Area for loaded folder content */
.content-area {
    background: white;
    border: 2px inset #c0c0c0;
    padding: 12px;
    flex: 1;
    overflow-y: auto;
    font-size: 11px; /* Basis-Schriftgröße für den Inhalt */
}

/* Überschriften in Modals */
.content-area h2 {
    font-size: 18px; /* Größere Überschrift */
    margin-bottom: 15px; /* Mehr Abstand nach unten */
    margin-top: 5px; /* Abstand nach oben, falls am Anfang des Inhalts */
    color: #333;
}

.content-area p {
    margin-bottom: 10px; /* Abstand zwischen Absätzen */
    line-height: 1.5; /* Bessere Lesbarkeit */
}

.content-area ul {
    margin-left: 20px;
    margin-bottom: 10px;
}

.content-area ul li {
    margin-bottom: 5px;
}


/* Content Buttons */
.content-buttons {
    margin-top: 20px; /* Abstand zu den Inhalten */
    display: flex;
    gap: 8px;
    flex-wrap: wrap; /* Buttons umbrechen, wenn zu viele */
}

.portfolio-button {
    background: #c0c0c0;
    border: 2px outset #c0c0c0;
    padding: 6px 12px;
    font-size: 12px;
    cursor: pointer;
    text-decoration: none;
    color: #000;
}

.portfolio-button:active {
    border: 2px inset #c0c0c0;
    transform: translate(1px, 1px);
}

.portfolio-button:hover {
    background-color: #D0D0D0; /* Etwas helleres Grau beim Hover */
}


/* Hidden content divs (original folder content) */
.hidden-content {
    display: none; /* These divs are just containers for content, not displayed directly */
}


/* About Dialog */
.about-window {
    min-width: 450px;
    min-height: 300px;
}
.about-content {
    text-align: center;
    padding: 20px;
}

.about-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

#about-h2-heading {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px; /* Abstand zur Version */
    color:#404040;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.about-content p {
    margin-bottom: 5px; /* Abstand zwischen den kleinen Textzeilen */
}


/* Notepad */
.notepad-window {
    min-width: 600px; /* Angepasste Mindestgröße */
    min-height: 500px; /* Angepasste Mindestgröße */
}

.notepad-content {
    width: 100%;
    height: 100%;
    border: 2px inset #c0c0c0;
    background: white;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    padding: 4px;
    resize: none;
    outline: none;
}

/* Animation Fenster anzeigen */
@keyframes popupWindow {
    0% { transform: scale(0.95); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.window.open { /* Animation nur, wenn das Fenster geöffnet wird */
    animation: popupWindow 0.15s ease-out;
}

/* Calculator Styles */
.calculator-window {
    /* min-width: 250px; --> Entfernt, da feste Breite */
    width: 250px; /* Feste Breite beibehalten */
    height: auto; /* Höhe flexibel lassen */
    min-height: 400px; /* Mindesthöhe, um Platz für Buttons zu garantieren */
    z-index:1020;
}

.calculator-display input {
    width: calc(100% - 16px); /* Weniger Margin-Korrektur */
    text-align: right;
    font-family: 'MS Sans Serif', sans-serif;
    font-size: 20px; /* Größere Schrift im Display */
    padding: 10px 8px; /* Mehr Padding */
    margin: 8px; /* Einheitlicher Margin */
    border: 2px inset #c0c0c0;
    background: white;
    box-sizing: border-box; /* Sicherstellen, dass Padding in die Breite einfließt */
}

.calculator-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px; /* Größerer Abstand zwischen Buttons */
    padding: 0 8px 8px 8px; /* Unten Padding */
    flex-grow: 1; /* Nimmt verfügbaren Platz im window-body ein */
}

.calculator-buttons button {
    padding: 12px 8px;
    font-size: 14px; /* Größere Schrift auf Buttons */
    cursor: pointer;
    background: #c0c0c0;
    border: 2px outset #c0c0c0;
    font-family: 'MS Sans Serif', sans-serif;
}

.calculator-buttons button:active {
    border: 2px inset #c0c0c0;
}

/* Spezielle Styles für den Gleich-Button, um 2 Reihen einzunehmen */
.calculator-buttons button[data-calc-action="equals"] {
    grid-row: span 2;
}

/* Spezielle Styles für den Null-Button, um 2 Spalten einzunehmen */
.calculator-buttons button[data-calc-action="input"][data-digit="0"] {
    grid-column: span 2;
}







/* Alert Window */
.alert-window {
    width: 350px; /* Etwas breiter */
    min-height: 250px; /* Etwas höher */
    z-index: 10000;
    text-align: center; /* Zentriert Inhalt */
}

#alertMessage {
    font-size: 13px; /* Etwas größere Schrift */
    padding: 15px; /* Mehr Padding um den Text */
    margin-bottom: 15px; /* Mehr Abstand zum Button */
    flex-grow: 1; /* Lässt den Textbereich den verfügbaren Platz einnehmen */
    display: flex; /* Für vertikale Zentrierung des Textes */
    align-items: center; /* Vertikal zentrieren */
    justify-content: center; /* Horizontal zentrieren */
}

.alert-ok-button {
    margin-top: 15px; /* Zusätzlicher Abstand zum Text */
}

/* Animation für das Blinken */
@keyframes blink-red {
    0% { border-color: #ff0000; }
    50% { border-color: #ff8080; }
    100% { border-color: #ff0000; }
}

.blinking-alert {
    animation: blink-red 0.5s linear infinite; /* Animation anwenden */
    box-shadow: 0 0 10px 2px #ff0000; /* Optional: Roter Schein */
}



/* Modern Settings */
.modern-settings-window {
    min-width: 650px; /* Angepasste Mindestgröße */
    min-height: 550px; /* Angepasste Mindestgröße */
}

.modern-settings-body {
    display: flex;
    flex-direction: column;
    height: calc(100% - 36px);
    padding: 0;
}

/* Tabs oben */
.settings-tabs {
    display: flex;
    background: #c0c0c0;
    border-bottom: 2px solid #808080;
}

.tab {
    padding: 6px 12px;
    background: #c0c0c0;
    border: 2px outset #fff;
    font-size: 12px;
    cursor: pointer;
    margin-right: 2px;
}

.tab.active {
    background: #c0c0c0;
    border: 2px inset #808080;
    border-bottom: none;
    position: relative;
    top: 2px;
    z-index: 2;
}

/* Inhalt der Tabs */
.settings-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #c0c0c0;
}

.tab-content {
    display: none;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    border: 2px inset #c0c0c0;
    background: #ffffff;
    padding: 16px;
}

.tab-content.active {
    display: block;
}

/* Linker Bereich mit Bild */
.settings-section {
    display: flex;
    gap: 24px;
}

.left-pane {
    background: #d0d0d0;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.device-image {
    width: 120px;
    height: 120px;
}

/* Textbereich */
.system-info h3 {
    font-size: 14px;
    margin: 6px 0 4px;
    font-weight: bold;
}

.system-info p {
    font-size: 12px;
    margin: 2px 0;
}

/* Untere Buttons */
.settings-buttons {
    text-align: right;
    padding: 8px 12px;
    border-top: 1px solid #808080;
    background: #c0c0c0;
    flex-shrink: 0;
}

.settings-buttons button {
    background: #c0c0c0;
    border: 2px outset #c0c0c0;
    padding: 4px 12px;
    font-size: 12px;
    cursor: pointer;
    margin-left: 8px;
}

.settings-buttons button:active {
    border: 2px inset #c0c0c0;
}








/* Startmenü Untermenü */
.start-menu-item.has-submenu {
    position: relative;
}

.start-submenu {
    position: absolute;
    left: 100%; /* Rechts neben dem Hauptmenü */
    bottom: 0; /* Unten bündig mit dem Eltern-Item */
    background: #c0c0c0; 
    border: 2px outset #c0c0c0; /* Standard Win98 Border */
    padding: 2px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    min-width: 200px;
    z-index: 1000; 
    display: none; /* Standardmäßig versteckt */
    top: auto; /* Wichtig, um die Positionierung flexibler zu machen */
}

.start-menu-item.has-submenu:hover > .start-submenu {
    display: block; /* Submenu beim Hover anzeigen */
}

.start-submenu .start-menu-item {
    padding: 8px 40px;
    display: flex;
    cursor: pointer;
    white-space: nowrap;
    font-size: 12px;
    justify-content: left;
    height: auto; /* Höhe flexibel halten */
    gap: 12px; /* Kleinerer Gap für Submenu-Items */
}

.start-submenu .start-menu-item img {
    position: left;
    left: 8px;
    width: 24px;
    height: 24px;
    margin-right: 0; /* Entferne den Margin, da Gap verwendet wird */
}

.start-submenu .start-menu-item:hover {
    background-color: #000080; 
    color: #fff;
}

.start-submenu-separator {
    height: 1px;
    background-color: #808080;
    margin: 4px 0;
    border-top: 1px solid #fff;
}




/* Paint Window Styles */
.paint-window {
    min-width: 650px; /* Ordentliche Größe für Paint */
    min-height: 500px;
}

.paint-body {
    display: flex;
    flex-direction: column;
    padding: 0; /* Kein Padding, da Toolbar und Canvas eigenen Platz brauchen */
}

.paint-toolbar {
    display: flex;
    align-items: center;
    padding: 4px;
    background: #c0c0c0;
    border-bottom: 2px inset #c0c0c0;
    flex-shrink: 0;
    gap: 8px;
}

.paint-toolbar button,
.paint-toolbar label {
    background: #c0c0c0;
    border: 2px outset #c0c0c0;
    padding: 4px 8px;
    font-size: 11px;
    cursor: pointer;
}

.paint-toolbar button:active {
    border: 2px inset #c0c0c0;
}

.paint-toolbar input[type="color"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 2px inset #c0c0c0;
    width: 32px;
    height: 24px;
    padding: 0;
    cursor: pointer;
    background-color: #c0c0c0; /* Hintergrundfarbe des Controls */
}

.paint-toolbar input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 1px; /* Innerer Abstand des Farbfeldes */
}
.paint-toolbar input[type="color"]::-webkit-color-swatch {
    border: 1px solid #808080; /* Rand um das Farbfeld */
    border-radius: 0; /* Keine Rundung */
}

.paint-toolbar input[type="range"] {
    width: 80px;
    height: 20px;
    -webkit-appearance: none;
    appearance: none;
    background: #dfdfdf;
    border: 2px inset #c0c0c0;
    outline: none;
    cursor: pointer;
}

.paint-toolbar input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: #c0c0c0;
    border: 1px outset #c0c0c0;
    cursor: pointer;
    border-radius: 0;
}

.paint-toolbar input[type="range"]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: #c0c0c0;
    border: 1px outset #c0c0c0;
    cursor: pointer;
    border-radius: 0;
}

.paint-toolbar .separator {
    width: 1px;
    height: 20px;
    background: #808080;
    border-right: 1px solid #fff;
    margin: 0 4px;
}

#paintCanvas {
    background: white;
    border: 2px inset #c0c0c0;
    cursor: crosshair;
    flex-grow: 1; /* Füllt den restlichen Platz */
    margin: 8px; /* Abstand zur Toolbar und den Seiten */
}



/* Screensaver Widget Window */
.screensaver-widget {
    position: fixed;
    top: 20px;
    right: -280px; /* Startet außerhalb des Bildschirms */
    width: 260px;
    height: 140px;
    background: #c0c0c0;
    border: 2px outset #c0c0c0;
    z-index: 9999;
    font-size: 11px;
    transition: right 0.3s ease-in-out;
}

.screensaver-widget.show {
    right: 20px;
}

.screensaver-widget.screensaver-active {
    z-index: 10003; /* Über dem Screensaver */
}

.widget-titlebar {
    height: 18px;
    background: linear-gradient(to right, #000080, #0000ff);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 4px;
    font-size: 11px;
    font-weight: bold;
}

.widget-close {
    background: #c0c0c0;
    border: 1px outset #c0c0c0;
    width: 16px;
    height: 14px;
    font-size: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.widget-close:active {
    border: 1px inset #c0c0c0;
}

.widget-content {
    padding: 10px;
    height: calc(100% - 22px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.widget-text {
    font-size: 11px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.widget-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.screensaver-toggle {
    background: linear-gradient(to bottom, #c0c0c0, #808080);
    border: 2px outset #c0c0c0;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
}

.screensaver-toggle:hover {
    background: linear-gradient(to bottom, #d0d0d0, #909090);
}

.screensaver-toggle:active {
    border: 2px inset #c0c0c0;
}

.screensaver-toggle.active {
    border: 2px inset #c0c0c0;
    background: linear-gradient(to bottom, #606060, #a0a0a0);
    color: #fff;
}

.widget-status {
    font-size: 10px;
    font-weight: bold;
    color: #000080;
}

/* Screensaver */
.screensaver-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    z-index: 10002;
    display: none;
    cursor: none;
}

.screensaver-logo {
    position: absolute;
    width: 120px;
    height: auto;
    image-rendering: pixelated;
    pointer-events: none;
}

/* Instructions Text */
.instructions {
    background: #ffffcc;
    border: 1px solid #000;
    padding: 8px;
    margin: 10px;
    font-size: 11px;
}












/* Alert Blinking Text CSS */
.blinking-title {
    animation: blink-color 1s infinite;
}

@keyframes blink-color {
    0% {
        background-color: #000080; /* Normale blaue Windows-Farbe */
    }
    50% {
        background-color: #ff0000; /* Auffälliges Rot */
    }
    100% {
        background-color: #000080; /* Zurück zur Normalfarbe */
    }
}





/* Zusätzliches Textcontent Styling */
        .highlight {
            background: #008080;
            padding: 2px 4px;
            color: #000;
            color: #fff;
        }
        .portfolio-button {
            background: #c0c0c0;
            border: 2px outset #c0c0c0;
            padding: 5px 15px;
            margin: 5px;
            cursor: pointer;
            font-family: 'MS Sans Serif', sans-serif;
        }
        .portfolio-button:hover {
            background: #e0e0e0;
            transition: .5s, ease-in-out;
        }
        .skills-timeline {
            background: #f0f0f0;
            padding: 15px;
            border: 1px solid #808080;
            margin: 15px 0;
        }
        .year-marker {
            color: #008080;
            font-weight: bold;
            font-size: 14px;
        }

        .teaser-text {
            background: #f0f0f0;
            padding: 12px;
            border: 1px solid #808080;
            margin: 10px 0;
            font-style: italic;
            font-size: 12px;
        }


        .skill-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 15px 0;
        }
        .skill-badge {
            background: #008080;
            color: white;
            padding: 4px 8px;
            font-size: 11px;
            border-radius: 0;
        }
        .expert-badge {
            background: #800080;
        }
        .basic-badge {
            background: #808080;
        }

        #small-h2-retro {
            font-size: 13px;
        }












/* --- Responsivität für Smartphones --- */
/* Media Query für Bildschirme mit einer maximalen Breite von 768px (typisch für Tablets im Hochformat und Smartphones) */
@media (max-width: 768px) {
    /* Boot- und Shutdown-Bildschirm */
    .boot-container,
    .shutdown-container {
        width: 90%; /* Verringere die Breite des Containers, damit er nicht über den Bildschirm hinausgeht */
        padding: 0 10px; /* Füge etwas horizontalen Abstand hinzu */
    }

    /* Anpassungen für #bootLogo und .windows-logo */
    #bootLogo img {
        width: 100px; /* Logo-Größe anpassen */
    }

    .logo-text {
        font-size: 38px; /* Schriftgröße des Hauptlogos anpassen */
    }

    .logo-subtext {
        font-size: 28px; /* Schriftgröße des Subtextes anpassen */
    }

    .boot-messages {
        min-height: 80px; /* Kleinere Mindesthöhe für Boot-Nachrichten */
    }

    .boot-text,
    .loading-text {
        font-size: 13px; /* Kleinere Schriftgröße für Boot-Texte */
    }

    .progress-container {
        height: 16px; /* Höhe des Ladebalkens anpassen */
        width: 90%; /* Anpassen an den Container */
        max-width: 90%; /* Anpassen an den Container */
    }

    .shutdown-container img {
        width: 80%; /* Bildgröße im Shutdown-Screen anpassen */
        max-width: 300px; /* Maximale Breite festlegen */
    }

    #Shutdown-message {
        font-size: 16px; /* Schriftgröße der Shutdown-Nachricht anpassen */
    }

    /* Desktop */
    .desktop { /* Entspricht #desktop in deinem alten Code */
        padding: 5px; /* Weniger Padding auf dem Desktop */
        display: flex; /* Wechsel zu Flexbox für Icons */
        flex-wrap: wrap; /* Icons umbrechen lassen */
        justify-content: flex-start; /* Icons linksbündig */
        align-content: flex-start; /* Icons oben ausrichten */
        overflow-y: auto; /* Scrollen, wenn zu viele Icons */
    }

    /* Desktop Icons */
    /* Die folgenden sind responsive Positionen. Ich behalte die absoluten Positionierungen bei, 
       da du diese auch im Standard-Code hast und sie für Drag & Drop wichtig sein könnten.
       Die Flexbox auf .desktop (deinem #desktop) ermöglicht trotzdem ein Umbrechen, 
       wenn die Icons nicht per JS auf eine feste Position gezogen werden. */
    .desktop-icon {
        width: 60px; /* Etwas kleinere Icons für Tablets */
        height: 75px;
        font-size: 11px; /* Kleinere Schrift für Icon-Beschriftungen */
        /* Absolute Positionierung wird von oben überschrieben, hier werden die relativen Positionen aus dem Original-Code angewendet */
        /* top, left werden von den spezifischen nth-child Regeln übernommen */
    }

    /* Deine spezifischen nth-child Regeln für 768px sind bereits gut und werden hier beibehalten */
    .desktop-icon:nth-child(1) { top: 10px; left: 10px; }
    .desktop-icon:nth-child(2) { top: 10px; left: 85px; }
    .desktop-icon:nth-child(3) { top: 10px; left: 160px; }
    .desktop-icon:nth-child(4) { top: 10px; left: 235px; }
    .desktop-icon:nth-child(5) { top: 105px; left: 10px; }
    .desktop-icon:nth-child(6) { top: 105px; left: 85px; }
    .desktop-icon:nth-child(7) { top: 105px; left: 160px; }
    .desktop-icon:nth-child(8) { top: 105px; left: 235px; }
    .desktop-icon:nth-child(9) { top: 200px; left: 10px; }
    .desktop-icon:nth-child(10) { top: 200px; left: 85px; }
    .desktop-icon:nth-child(11) { top: 200px; left: 160px; } /* Neues Paint Icon */


    .icon-label {
        font-size: 11px;
        max-width: 55px; /* Max-Breite für Icon-Labels anpassen */
    }

    .icon-image {
        width: 28px; /* Icon-Bilder etwas kleiner */
        height: 28px;
    }

    /* Taskbar */
    .taskbar { /* Entspricht #taskbar in deinem alten Code */
        height: 40px; /* Höhe beibehalten, aber auf Flexibilität achten */
        padding-right: 2px; /* Etwas Padding rechts hinzufügen */
    }

    .start-button { /* Entspricht #startButton in deinem alten Code */
        height: 36px; /* Start-Button etwas größer machen für bessere Bedienbarkeit */
        font-size: 12px;
        padding: 0 6px 0 3px;
        gap: 3px;
    }

    .start-icon {
        width: 20px; /* Start-Icon etwas größer machen */
        height: 20px;
    }

    .taskbar-programs { /* Entspricht #taskbarPrograms in deinem alten Code */
        padding: 2px 2px; /* Weniger Padding */
        gap: 2px; /* Kleinerer Abstand zwischen Programm-Buttons */
    }

    .taskbar-program-button { /* Entspricht .taskbar-button in deinem alten Code */
        height: 36px; /* Programm-Buttons etwas größer machen */
        padding: 0 6px;
        font-size: 12px;
        max-width: 120px; /* Maximale Breite der Buttons reduzieren */
    }

    .system-tray {
        height: 36px; /* System-Tray Höhe anpassen */
        padding: 0 2px;
        gap: 2px;
    }

    .tray-icon {
        width: 20px; /* Tray-Icons etwas größer machen */
        height: 20px;
        margin: 0 2px;
    }

    .clock { /* Entspricht #clock in deinem alten Code */
        font-size: 10px; /* Uhrzeit-Schriftgröße anpassen */
        padding: 2px 5px;
        min-width: 50px;
    }

    /* Start Menu */
    .start-menu { /* Entspricht #startMenu in deinem alten Code */
        width: 240px; /* Breite des Startmenüs anpassen */
        font-size: 13px; /* Basis-Schriftgröße im Startmenü anpassen */
        bottom: 40px; /* Standardmäßig über der Taskleiste */
        left: 0;
    }

    .start-menu-sidebar {
        width: 30px; /* Sidebar-Breite anpassen */
        min-height: 300px; /* Mindesthöhe anpassen */
    }

    .start-menu-title {
        font-size: 14px;
    }

    .start-menu-version {
        font-size: 12px;
    }

    .start-menu-item {
        padding: 6px 12px 6px 35px; /* Padding anpassen */
        font-size: 13px;
        height: 28px; /* Höhe der Menüpunkte anpassen */
    }

    .start-menu-icon {
        left: 5px; /* Icon-Position anpassen */
        width: 14px; /* Icon-Größe anpassen */
        height: 14px;
    }

    /* Startmenü Untermenü */
    .start-submenu {
        left: 100%; /* Bleibt rechts, da es Teil des Startmenü-Konzepts ist */
        bottom: auto; /* Wichtig, um die Positionierung flexibler zu machen */
        top: auto;
        max-height: 60vh; /* Maximale Höhe, damit es nicht über den Bildschirm ragt */
        overflow-y: auto; /* Scrollbar, wenn zu viele Items */
    }

    /* Popup Stylings Taskbar */
    .tray-popup {
        bottom: 45px; /* Position des Popups anpassen */
        right: 5px; /* Position des Popups anpassen */
        min-width: 100px;
        padding: 8px;
    }

    .volume-popup {
        width: 160px;
    }

    .volume-slider {
        width: 100px;
        height: 20px;
    }

    .mute-button {
        font-size: 12px !important;
        padding: 2px 6px !important;
        min-width: 35px !important;
        height: 24px !important;
    }

    /* Windows (allgemein) */
    .window {
        min-width: 90%; /* Mindestbreite anpassen, damit Fenster nicht zu klein werden */
        min-height: 70vh; /* Mindesthöhe anpassen */
        left: 5% !important; /* Zentrierung erleichtern */
        top: 5% !important;
        width: 90vw !important; /* Standardmäßig 90% Breite */
        height: calc(90vh - 40px) !important; /* Standardmäßig 90% Höhe minus Taskleiste */
        transform: none !important; /* Keine Transformation mehr, da absolute Positionierung */
        box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3) !important; /* Behalte den Standard-Schatten bei, wenn nicht maximiert */
    }

    /* Aktives Fenster (im Vordergrund) - überschreibt nur den Schatten, nicht die Position */
    .window.active {
        z-index: 999;
        box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.6) !important;
    }

    /* Maximierter Zustand auf Smartphones */
    .window.maximized {
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: calc(100vh - 40px) !important;
        transform: none !important;
        border: none !important; /* Im maximierten Zustand keinen Rahmen */
        border-radius: 0 !important;
        box-shadow: none !important;
        min-width: unset !important;
        min-height: unset !important;
    }

    .title-bar {
        height: 28px; /* Titelzeile etwas höher */
        padding: 0 4px; /* Standard-Padding beibehalten */
    }

    .title-bar-text {
        font-size: 13px; /* Titeltext größer */
    }

    .title-bar-controls button {
        width: 20px; /* Buttons größer */
        height: 20px;
        font-size: 10px;
    }

    .window-body { /* Entspricht .window-content in deinem alten Code */
        padding: 6px; /* Weniger Padding im Fensterkörper */
    }

    /* CMD Specific */
    .cmd-body {
        font-size: 11px; /* Kleinere Schrift im CMD */
    }

    /* Content Area for loaded folder content */
    .content-area {
        padding: 8px; /* Weniger Padding */
        font-size: 10px; /* Kleinere Basis-Schriftgröße */
    }

    .content-area h2 {
        font-size: 16px; /* Überschrift anpassen */
        margin-bottom: 10px;
    }

    .content-area p {
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .portfolio-button {
        padding: 4px 10px; /* Buttons verkleinern */
        font-size: 11px;
    }

    /* About Dialog */
    .about-window {
        min-width: 90%;
        min-height: 250px;
    }

    #about-h2-heading {
        font-size: 13px;
    }

    /* Notepad */
    .notepad-window {
        min-width: 90%;
        min-height: 70vh;
    }

    /* Calculator Styles */
    .calculator-window {
        width: 90%; /* Rechenfenster anpassen */
        max-width: 300px; /* Maximale Breite festlegen */
        min-height: 350px;
    }

    .calculator-display input {
        font-size: 18px; /* Display-Schriftgröße anpassen */
        padding: 8px;
        margin: 6px;
    }

    .calculator-buttons {
        gap: 6px; /* Abstand zwischen Buttons verringern */
        padding: 0 6px 6px 6px;
    }

    .calculator-buttons button {
        padding: 10px 6px; /* Button-Padding anpassen */
        font-size: 13px;
    }

    /* Alert Window */
    .alert-window { /* Entspricht #alertWindow in deinem alten Code */
        width: 80%; /* Warnfenster anpassen */
        min-height: 200px;
    }

    #alertMessage {
        font-size: 12px;
        padding: 10px;
        margin-bottom: 10px;
    }

    .alert-ok-button { /* Entspricht #alertWindow button in deinem alten Code */
        margin-top: 15px; /* Zusätzlicher Abstand zum Text */
        padding: 6px 15px; /* Anpassung des Paddings */
        font-size: 12px; /* Anpassung der Schriftgröße */
    }

    /* Modern Settings */
    .modern-settings-window {
        min-width: 90%;
        min-height: 80vh;
    }

    .tab {
        padding: 5px 10px;
        font-size: 11px;
    }

    .settings-section {
        flex-direction: column; /* Abschnitte untereinander anordnen */
        gap: 16px;
    }

    .left-pane {
        padding: 12px;
    }

    .device-image {
        width: 80px; /* Bildgröße anpassen */
        height: 80px;
    }

    .system-info h3 {
        font-size: 13px;
    }

    .system-info p {
        font-size: 11px;
    }

    .settings-buttons {
        padding: 6px 10px;
    }

    .settings-buttons button {
        padding: 3px 10px;
        font-size: 11px;
    }

    /* Paint Window Styles */
    .paint-window { /* Entspricht #paintWindow in deinem alten Code */
        min-width: 90%;
        min-height: 70vh;
    }

    .paint-toolbar {
        flex-wrap: wrap; /* Toolbar-Elemente umbrechen */
        gap: 6px;
        padding: 6px;
        flex-direction: row; /* Standardmäßig nebeneinander, wenn genug Platz */
    }

    .paint-toolbar button,
    .paint-toolbar label {
        padding: 3px 6px;
        font-size: 10px;
    }

    .paint-toolbar input[type="color"] {
        width: 28px;
        height: 20px;
    }

    .paint-toolbar input[type="range"] {
        width: 60px;
    }

    #paintCanvas {
        margin: 6px;
    }

    /* Screensaver Widget Window */
    .screensaver-widget { /* Entspricht #screensaverWidget in deinem alten Code */
        width: 90%; /* Widget-Breite anpassen */
        right: 5%; /* Position anpassen */
        top: 10px; /* Oben positionieren */
        height: auto; /* Höhe flexibel halten */
        left: 5%;
        transform: translateX(0); /* Entferne evtl. Transformationen */
    }

    .screensaver-widget.show {
        right: 5%;
    }

    .widget-titlebar {
        height: 22px;
        font-size: 12px;
    }

    .widget-close {
        width: 18px;
        height: 16px;
        font-size: 9px;
    }

    .widget-content {
        padding: 8px;
    }

    .widget-text {
        font-size: 10px;
    }

    .screensaver-toggle { /* Entspricht #screensaverToggle in deinem alten Code */
        padding: 3px 10px;
        font-size: 10px;
    }

    .widget-status {
        font-size: 9px;
    }

    /* Instructions Text */
    .instructions {
        padding: 6px;
        margin: 8px;
        font-size: 10px;
    }

    /* Zusätzliches Textcontent Styling */
    .highlight {
        padding: 1px 3px;
    }

    .portfolio-button {
        padding: 4px 10px;
        margin: 3px;
        font-size: 11px;
    }

    .skills-timeline {
        padding: 10px;
        margin: 10px 0;
    }

    .year-marker {
        font-size: 13px;
    }

    .teaser-text {
        padding: 8px;
        margin: 8px 0;
        font-size: 11px;
    }

    .skill-badges {
        gap: 6px;
        margin: 10px 0;
    }

    .skill-badge {
        padding: 3px 6px;
        font-size: 10px;
    }

    #small-h2-retro {
        font-size: 12px;
    }
}

/* Media Query für noch kleinere Bildschirme (z.B. iPhone SE) */
@media (max-width: 480px) {
    /* Boot- und Shutdown-Bildschirm */
    .logo-text {
        font-size: 32px;
    }

    .logo-subtext {
        font-size: 24px;
    }

    .boot-messages {
        min-height: 60px;
    }

    .boot-text,
    .loading-text {
        font-size: 12px;
    }

    /* Desktop Icons */
    .desktop-icon {
        width: 50px;
        height: 65px;
        font-size: 10px; /* Noch kleinere Schrift */
    }

    /* Deine spezifischen nth-child Regeln für 480px sind bereits gut und werden hier beibehalten */
    .desktop-icon:nth-child(1) { top: 10px; left: 10px; }
    .desktop-icon:nth-child(2) { top: 10px; left: 75px; }
    .desktop-icon:nth-child(3) { top: 10px; left: 140px; }
    .desktop-icon:nth-child(4) { top: 95px; left: 10px; }
    .desktop-icon:nth-child(5) { top: 95px; left: 75px; }
    .desktop-icon:nth-child(6) { top: 95px; left: 140px; }
    .desktop-icon:nth-child(7) { top: 180px; left: 10px; }
    .desktop-icon:nth-child(8) { top: 180px; left: 75px; }
    .desktop-icon:nth-child(9) { top: 180px; left: 140px; }
    .desktop-icon:nth-child(10) { top: 265px; left: 10px; }
    .desktop-icon:nth-child(11) { top: 265px; left: 75px; } /* Neues Paint Icon */


    .icon-image {
        width: 24px; /* Icon-Bilder noch kleiner */
        height: 24px;
    }

    .icon-label {
        font-size: 10px;
        max-width: 45px;
    }

    /* Taskbar */
    .taskbar {
        height: 36px; /* Taskbar noch etwas kleiner */
    }

    .start-button {
        height: 32px;
        font-size: 10px;
        padding: 0 4px 0 2px;
    }

    .start-icon {
        width: 16px; /* Noch kleinere Start-Icons */
        height: 16px;
    }

    .taskbar-program-button {
        height: 32px;
        font-size: 10px;
        max-width: 90px;
        padding: 0 4px;
    }

    .system-tray {
        height: 32px;
    }

    .tray-icon {
        width: 16px; /* Noch kleinere Tray-Icons */
        height: 16px;
        margin: 0 2px;
    }

    .clock {
        font-size: 9px;
        min-width: 45px;
    }

    /* Start Menu */
    .start-menu {
        width: 200px;
    }

    .start-menu-sidebar {
        width: 25px;
    }

    .start-menu-item {
        padding: 5px 10px 5px 30px;
        font-size: 12px;
        height: 25px;
    }

    .start-menu-icon {
        left: 3px;
        width: 12px;
        height: 12px;
    }

    /* Popup Stylings Taskbar */
    .tray-popup {
        bottom: 40px;
        padding: 6px;
    }

    .volume-popup {
        width: 140px;
    }

    .volume-slider {
        width: 80px;
        height: 18px;
    }

    /* Windows (allgemein) */
    .window {
        min-width: 95%;
        min-height: 60vh;
        left: 2.5% !important;
        width: 95vw !important;
        height: calc(95vh - 36px) !important; /* Anpassung an die kleinere Taskleiste */
    }

    .title-bar {
        height: 24px;
    }

    .title-bar-text {
        font-size: 12px;
    }

    .title-bar-controls button {
        width: 18px;
        height: 18px;
    }

    .window-body {
        padding: 4px;
    }

    /* CMD Specific */
    .cmd-body {
        font-size: 10px;
    }

    /* Content Area for loaded folder content */
    .content-area {
        padding: 6px;
        font-size: 9px;
    }

    .content-area h2 {
        font-size: 14px;
    }

    .portfolio-button {
        padding: 3px 8px;
        font-size: 10px;
    }

    /* About Dialog */
    .about-window {
        min-height: 200px;
    }

    #about-h2-heading {
        font-size: 12px;
    }

    /* Notepad */
    .notepad-window {
        min-height: 60vh;
    }

    /* Calculator Styles */
    .calculator-window {
        width: 95%;
        max-width: 280px;
        min-height: 300px;
    }

    .calculator-display input {
        font-size: 16px;
        padding: 6px;
        margin: 4px;
    }

    .calculator-buttons {
        gap: 4px;
        padding: 0 4px 4px 4px;
    }

    .calculator-buttons button {
        padding: 8px 4px;
        font-size: 12px;
    }

    /* Alert Window */
    .alert-window {
        width: 90%;
        min-height: 180px;
    }

    #alertMessage {
        font-size: 11px;
        padding: 8px;
        margin-bottom: 8px;
    }

    /* Modern Settings */
    .modern-settings-window {
        min-height: 70vh;
    }

    .tab {
        padding: 4px 8px;
        font-size: 10px;
    }

    .device-image {
        width: 70px;
        height: 70px;
    }

    .system-info h3 {
        font-size: 12px;
    }

    .system-info p {
        font-size: 10px;
    }

    .settings-buttons {
        padding: 4px 8px;
    }

    .settings-buttons button {
        padding: 2px 8px;
        font-size: 10px;
    }

    /* Startmenü Untermenü */
    .start-submenu .start-menu-item {
        font-size: 11px;
    }

    .start-submenu .start-menu-item img {
        width: 20px;
        height: 20px;
    }

    /* Paint Window Styles */
    .paint-window {
        min-height: 60vh;
    }

    .paint-toolbar {
        padding: 4px;
        gap: 4px;
    }

    .paint-toolbar button,
    .paint-toolbar label {
        padding: 2px 4px;
        font-size: 9px;
    }

    #paintCanvas {
        margin: 4px;
    }

    /* Screensaver Widget Window */
    .screensaver-widget {
        width: 95%;
        right: 2.5%;
        left: 2.5%;
    }

    .widget-titlebar {
        height: 20px;
        font-size: 11px;
    }

    .widget-close {
        width: 16px;
        height: 14px;
    }

    .widget-content {
        padding: 6px;
    }

    .widget-text {
        font-size: 9px;
    }

    .screensaver-toggle {
        padding: 2px 8px;
        font-size: 9px;
    }

    .widget-status {
        font-size: 8px;
    }
}

/* Hochformat vs. Querformat für Smartphones/Tablets */
@media (orientation: landscape) and (max-width: 900px) {
    /* Anpassungen für Querformat auf kleineren Geräten */
    .desktop-icon {
        width: 80px;
        height: 90px;
        font-size: 0.8em;
        margin: 8px;
    }

    .desktop { /* Entspricht #desktop in deinem alten Code */
        justify-content: center; /* Icons zentrieren, wenn mehr Platz ist */
    }

    .window {
        width: 80vw;
        height: 90vh;
        min-width: 300px;
        min-height: 200px;
        left: 10vw !important; /* Zentrierung */
        top: 5vh !important;
    }

    .paint-toolbar {
        flex-direction: row; /* Toolbar wieder nebeneinander, wenn Platz ist */
        flex-wrap: nowrap;
    }
}





/* Media Query für Bildschirme mit einer maximalen Breite von z.B. 768px */
/*Ausblenden des Screensaver Manahgers auf kleineren Bildschirmen*/
@media (max-width: 768px) {
    #screensaverWidget {
        display: none !important; /* Versteckt das gesamte Screensaver-Widget */
    }
}