#program_frame
{position: relative;
width: 500px;
height: 500px;
border: solid lightgreen 3px;
background-color: white;
z-index: 99999999;
resize: both;
overflow: auto;}

#program_fh
{position: absolute;
top: 0px;
left: 0px;
width: 100vw;
height: 100vh;
display: none;
align-items: center;
justify-content: center;
overflow: auto;
z-index: 999999999;}

#program_holder {
    width: 100%; 
    height: 90%;
    border: none;
}

#top_bar {
    height: 10%;
    width: 100%;
    box-sizing: border-box;
    background-color: lightgray;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 5px;
    border-bottom: solid lightgreen 3px
}

#program_name
{position: absolute;
left: 10px;
color: black;
font-weight: bold;
font-size: 15px;
cursor: default}

#top_bar button
{width: 30px;
height: 25px;}

#close_program
{transition: background-color 0.3s ease;
transition: color 0.3s ease;
color: black;
font-weight: bold;
cursor: pointer}

#close_program:hover
{background-color: red;
color: white;}

#fullscreen_p
{color: black;
font-weight: bold;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center}

#fullscreen_p:hover
{filter:brightness(0.7)}

#minimize_p
{color: black;
font-weight: bold;
cursor: pointer}

#minimize_p:hover
{filter:brightness(0.7)}

.app_icon {
    transition: transform 0.2s ease;
}

.app_icon:active {
    cursor: grabbing;
}