body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #0078D7;
    display: flex;
    justify-content: center;
    align-items: center;
}

.window {
    width: 90vw;
    height: 90vh;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}

.title-bar {
    background-color: #0078D7;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
}

.title {
    font-weight: bold;
}

.window-controls {
    display: flex;
}

.window-controls button {
    width: 16px;
    height: 16px;
    margin-left: 5px;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.window-controls .minimize {
    background: url('minimize-icon.png') no-repeat center;
}

.window-controls .maximize {
    background: url('maximize-icon.png') no-repeat center;
}

.window-controls .close {
    background: url('close-icon.png') no-repeat center;
}

.window-content {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Nuevo estilo para el video */
.video-container {
    text-align: center;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Estilos del video */
.video-container video {
    max-width: 100%;
    max-height: 100%;
    border: 1px solid #ccc;
    background-color: #000; /* Fondo negro para mejor visualización */
    padding: 5px;
    border-radius: 10px;
}

.navigation-buttons {
    text-align: center;
    margin-top: 20px;
}

.nav-button {
    background-color: #0078D7;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.nav-button:hover {
    background-color: #005bb5;
}

h1 {
    font-size: 36px;
}

p {
    font-size: 26px;
}
