.window {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw; /* Fill viewport width */
    height: 100vh; /* Fill viewport height */
    background-color: #fff; /* Example background color */
    z-index: 1000; /* Ensure windows appear above other elements */
    overflow: hidden; /* Hide any content overflow */
}


.window-header {
    background-color: #007bff;
    color: #fff;
    padding: 8px;
    cursor: move;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.window-content {
    width: 10vw; 
    height: 100vh; 
    padding: 30px;
    box-sizing: border-box; 
}


.close {
    float: right;
    cursor: pointer;
}

/* Resizable handles */
.resize-handle {
    position: absolute;
    width: 10px;
    height: 99%;
    background-color: #007bff;
    cursor: nwse-resize; /* North-West to South-East resize cursor */
    bottom: 0;
    right: 0;
}


/* Add these styles to constrain window content */
.window-content {
    padding: 10px;
    max-width: calc(100% - 20px); /* Constrain content width to window width minus padding */
    max-height: calc(100% - 40px); /* Constrain content height to window height minus header and padding */
}

a {
    &:hover {
        cursor: pointer;
    }
    &:active {
        color: blue;
    }
    &:visited {
        color: #007bff;
    }
}


.app-drawer {
    top: 100px; 
    left: 10px; 
    display: none;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    z-index: 1;
    padding: 10px;
}

.app-drawer.show {
    display: block;
}

.app-drawer a {
    display: block;
    margin-bottom: 5px;
    color: #000;
    text-decoration: none;
}


 .app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); 
    gap: 10px; /* Adjust gap between grid items */
}

.app-grid a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000;
    text-decoration: none;
}
.app-drawer a:hover {
    color: #007bff;
}

 /* Add styles for the taskbar */
        .taskbar {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            padding: 10px;
            z-index: 1000;
        }

        .taskbar ul {
            list-style-type: none;
            margin: 0;
            padding: 0;
        }

        .taskbar li {
            display: inline;
            margin-right: 20px;
        }

        .taskbar a {
            color: white;
            text-decoration: none;
        }

        .taskbar a:hover {
            color: #007bff;
        }

        /* Add styles for the app icons */
        .app-icons {
            position: fixed;
            bottom: 10px;
            left: 10px;
            z-index: 1000;
        }

        /* Add background image styles */
        body {
            background-image: url('./Assets/background.jpg');
            background-repeat: no-repeat;
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
            color: white;
        }



