body {
    margin: 0;
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 16px;
    color: #000;
    /* Fondo de escritorio característico de Windows XP */
    background-color: #3a6ea5; 
}

.windows-desktop {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Estilo de la ventana principal */
.window-container {
    width: 80%;
    max-width: 700px;
    margin: 50px auto;
    border: 1px solid #103362;
    box-shadow: inset -1px -1px #fff, inset 1px 1px #888;
    background-color: #ece9d8;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

/* Barra de título de la ventana */
.window-header {
    background: linear-gradient(to right, #0056e9, #4a87f1);
    color: #fff;
    padding: 2px 4px 2px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
    text-shadow: 1px 1px #000;
}

.window-controls {
    display: flex;
}

.window-controls button {
    width: 20px;
    height: 20px;
    margin-left: 2px;
    border: 1px solid #000;
    background-color: #ece9d8;
    background-image: linear-gradient(to bottom, #fff, #c3c3c3);
    box-shadow: inset -1px -1px #888, inset 1px 1px #fff, 1px 1px #000000;
    font-size: 14px;
    cursor: pointer;
}

/* Contenido de la ventana */
.window-body {
    padding: 10px;
    overflow-y: auto;
    flex-grow: 1;
}

.window-body h2 {
    font-size: 16px;
    margin-top: 0;
}

.window-body a {
    display: block;
    padding: 2px;
    color: #000;
    text-decoration: none;
}

.window-body a:hover {
    background-color: #3399ff;
    color: #fff;
}

/* Estilo de la barra de tareas */
.taskbar {
    height: 30px;
    background: linear-gradient(to right, #2458a2, #298dff);
    display: flex;
    align-items: center;
    padding: 0 4px;
    box-shadow: inset 0px 1px #4a87f1;
}

.start-button {
    height: 24px;
    padding: 0 8px;
    background: linear-gradient(to bottom, #7ed658, #309419);
    border: 1px solid #013511;
    box-shadow: inset -1px -1px #457833, inset 1px 1px #c5efb7, 1px 1px #000;
    color: #fff;
    font-weight: bold;
    text-shadow: 1px 1px #000;
    cursor: pointer;
}

.taskbar-separator {
    width: 2px;
    height: 24px;
    background-color: #fff;
    margin: 0 4px;
    border: 1px solid #000;
}

.taskbar-tray {
    margin-left: auto;
    background-color: #2458a2;
    padding: 0 8px;
    height: 100%;
    display: flex;
    align-items: center;
    color: #fff;
    border-left: 1px solid #4a87f1;
}