#display_fh
{z-index: 10;
position: absolute;
display: none;
background-color: white;
top: 0px;
left: 0px;
width: 100vw;
height: 100vh;
color: #000000;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
overflow: hidden;}

.app_icon
{border-radius: 50%;
width: 55px;
height: 55px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
border-style: solid;
border-width: 2px;
cursor: pointer;}

.app_icon:hover
{filter:brightness(0.7)}

#taskbar
{background-color: lightgray;
border-top: solid black 3px;
position: absolute;
bottom: 0px;
left: 0px;
width: 100vw;
height: 9vh;
display: flex;
align-items: center;
padding-left: 10px;
z-index: 9999999999}

#apps
{display: flex;
width: auto;
min-width: 70px;
height: 70px;
border: none;
flex-direction: row;
align-items: center;
padding-left: 10px;
gap: 10px;}

#walpaper
{position: absolute;
top: 0px;
left: 0px;
width: 100vw;
height: 100vh;
z-index: 1;}





.desktop-icon {
    position: absolute;
    width: 80px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: move;
    z-index: 15;
    text-align: center;
    border: 1px solid transparent;
}

.desktop-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.desktop-icon p {
    color: white;
    text-shadow: 1px 1px 2px black;
    font-size: 12px;
    margin-top: 5px;
    word-break: break-all;
}

#context-menu {
    position: absolute;
    display: none;
    z-index: 10000000;
    background: #f0f0f0;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    min-width: 150px;
}

.menu-item {
    padding: 8px 12px;
    cursor: pointer;
    color: #333;
    font-size: 13px;
}

.menu-item:hover {
    background: #2196f3;
    color: white;
}


#date_h
{color: white;
position: absolute;
right: 20px;
width: 230px;
height: 50px;
border-radius: 7px;
border: solid black 3px;
background-color: rgb(80, 80, 80);
display: flex;
align-items: center;
justify-content: center;
flex-direction: row;
gap: 7px;}


#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}