#header{
    border: 1px solid black;
    margin: 10px;
    padding: 10px;
    display: flex;
    justify-content: center;
}

#header button {
    font-weight: 600;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    cursor: pointer;
}

#header button:hover {
    transform: scale(1.05);
    background-color: lightyellow;
}

#breadcrumb{
    border: 1px solid black;
    margin: 10px;
    display: flex;
}

#breadcrumb a {
    background-color: tomato;
    padding: 10px;
    border-right: 5px solid black;
}

#breadcrumb a:hover {
    background-color: teal;
    text-decoration: underline;
}

#container{
    border: 1px solid black;
    margin: 10px;
    padding: 10px;
    display: flex;
}

.folder {
    background-color: teal;
    color:white;
    height: 120px;
    width: 150px;

    margin: 10px;
    padding: 10px;

    border:2px solid red;
    border-radius: 10px;
}

.folder div[purpose=name]{
    margin-top: 80px;
}

.folder [action]{
    text-decoration: underline;
    cursor: pointer;
}

.folder [action]:hover {
    color: blue;
    transform: scale(2);
}


.text-file {
    background-color: lightcoral;
    color:white;
    height: 120px;
    width: 150px;

    margin: 10px;
    padding: 10px;

    border:2px solid red;
    border-radius: 10px;
}

.text-file div[purpose=name]{
    margin-top: 80px;
}

.text-file [action]{
    text-decoration: underline;
    cursor: pointer;
}

.text-file [action]:hover {
    color: blue;
    transform: scale(2);
}

#app{
    border: 5px solid blue;
    margin: 10px;
}

#app-title-bar {
    display: flex;
    background-color: cyan;
    height: 40px;
}

#app-title {
    width: 92%;
    text-align: center;
    border-right: 5px solid red;
}

#app-menu-bar {
    display: flex;
    background-color: teal;
    height: 40px;
}

#app-body {
    display: flex;
    background-color:springgreen;
    height: 500px;
}

.notepad-menu{
    width: 100%;
    padding: 5px;
}

.notepad-menu * {
    margin: 0px 5px;
    padding: 2px;
    cursor: pointer;
    border: 2px solid white;
    border-radius: 5px;
}

.notepad-menu span {
    vertical-align: bottom;
    
}

.notepad-menu span:hover {
    border: 2px solid black;
    background-color: white;
    color: teal;
}


.notepad-menu [pressed=true] {
    border: 2px solid black;
    background-color: white;
    color: teal;
}

.notepad-menu input[type=color] {
    width: 30px;
}

.notepad-menu select {
    height: 30px;
}

.notepad-body {
    height: 100%;
    width: 100%;
}

.notepad-body textarea{
    height: 100%;
    width: 100%;
}


.notepad-menu a[purpose=download]{
    display: none;
}

#win-actions span{
    cursor: pointer;
}

#win-actions span:hover{
    color:blue;
}

.notepad-menu input[action=upload]{
    display: none;
}



.album{
    background-color: rgb(87, 179, 233);
    color:white;
    height: 120px;
    width: 150px;

    margin: 10px;
    padding: 10px;

    border:2px solid red;
    border-radius: 10px;
}

.album div[purpose=name]{
    margin-top: 80px;
}

.album [action]{
    text-decoration: underline;
    cursor: pointer;
}

.album [action]:hover {
    color: blue;
    transform: scale(2);
}


.notepad-menu{
    width: 100%;
    padding: 5px;
}

.album-menu * {
    margin: 5px 5px;
    padding: 2px;
    cursor: pointer;
    border: 2px solid white;
    border-radius: 5px;
}

.album-menu span {
    vertical-align: bottom;
    
}

.album-menu span:hover {
    border: 2px solid black;
    background-color: white;
    color: teal;
}

.album-body{
    height: 100%;
    width: 100%;
    margin:5px;
}
.picture-list{
    border:1px solid black;
    height:100px;
    margin:5px;
    padding:5px;
    display:flex;
}

.picture-list img{
    border:1px solid teal;
    border-radius: 5px;
    height:90px; 
    margin:5px;
    cursor:pointer;
}

.picture-list img:hover{
   transform: scale(1.1);
   border: 2px solid yellow;
}
.picture-view{
    border:2px solid black;
    height:350px;
    display:flex;
}
.picture-main{
    width:70%;
}

.picture-main img{
   height:100%;
   border:1px solid white;
   width:100%;
}

.move-right{
    height: 100%;
    width:15%;
    border:1px solid white;
}

.move-left{
    height: 100%;
    width:15%;
    border:1px solid white;
}

.picture-list img[pressed = true]{
   transform: scale(1.1);
   border:1px solid white;
}