body {
    background-image: url(image/os-background.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    margin: 0;
}

.taskbar {
    background-color: rgba(8, 82, 241, 0.897);
    height: 50px;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    gap: 10px;
    display: flex;
    align-items: center;
}

.taskbar img{
    height: 43px;
    width: 43px;
    user-select: none;
    -webkit-user-drag: none;
}
.actionbar{
    margin-left: auto;
    margin-right: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    user-select: none;
    -webkit-user-drag: none;
}

#clock {
    font-size: 20px; 
    font-family: monospace;
    font-weight: bold;
    color: white;
    user-select: none;
    -webkit-user-drag: none;
}
#wifi img{
    height: 30px;
    width: 30px;
    user-select: none;
    -webkit-user-drag: none;
}

#poweroff {
    border-left: 1px solid black;
}
/*Dont forget to write hover in all 3 and transition se transform ka second control hoga*/
#img1:hover,#img2:hover,#img3:hover{
    transform: scale(1.1);
    transition: transform ease 0.1s;
}

.start-menu {
    position: fixed;
    left: 5px;
    bottom: 55px;
    width: 250px;
    height: 300px;
    background-color: rgb(100, 177, 228);
    border-radius: 10px;
    z-index: +1;
}
.menu1,.menu2, .menu3, .menu4,.menu5, .menu6{
    width: 220px;
    height: 30px;
    user-select: none;
    -webkit-user-drag: none;
}
.menu1:hover, 
.menu2:hover,
.menu3:hover,
.menu4:hover,
.menu5:hover,
.menu6:hover{
    background-color : rgb(50, 153, 221);
}

.menus img{
    height: 25px;
    width: 25px;
    vertical-align: bottom;
    border-radius: 3px;
    margin-left: 4px;
    user-select: none;
    -webkit-user-drag: none;
}

.menus ul {
    margin: 0;
    padding: 20px;
    color:black;
    list-style-type: none;
    gap: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
}

.windows_manager_sticknotes {
    height: 350px;
    width: 250px;
    background-color:blueviolet;
    top: 20px;
    left:20px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
}

.operation_manager{
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    align-self: flex-end;
    margin-right: 10px;
    margin-bottom: 5px;
    gap: 5px;
    user-select: none;
    -webkit-user-drag: none;
    cursor: grab;
    margin-top: 10px;
}

.main_sticky_note {
    box-sizing: border-box;
    height: 300px;
    width: 200px;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
}

.program_name {
    margin-right: 60px;
    font-family: cursive;
    user-select: none;
    -webkit-user-drag: none;
}

.minimize{
    background-color: yellow;
    border-radius: 25%;
    cursor: pointer;
}

.maximize{
    background-color: rgb(72, 231, 72);
    border-radius: 25%;
    cursor: pointer;
}

.close{
    background-color: rgb(240, 28, 28);
    border-radius: 30%;
    cursor: pointer;
}

.windows_manager_settings {
    height: 800px;
    width: 1200px;
    background-color: lightblue;
    top: 20px;
    left:20px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
}



.main_settings{
    height: 750px;
    width: 1150px;
    background-color: aliceblue;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.program_name_settings{
    margin-right: 1040px;
    font-size: larger;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
    vertical-align: bottom;
    user-select: none;
    -webkit-user-drag: none;
}


.windows_manager_music {
    height: 400px;
    width: 400px;
    background-color: blueviolet;
    position: absolute;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    bottom: 60px;
    right: 30px;
    box-sizing: border-box;
}

.program_name_music {
    margin-right: 250px;
    font-weight: bolder;
}
.music {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 0;
}

.audio-player {
    box-sizing: border-box;
    height: 350px;
    width: 350px;
    background-color: rgb(189, 119, 250);
    padding: 10px;
    border-radius: 10px;
}

.audio-player form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.music_list {
    margin-top: auto;
    cursor: pointer;
}
.music_controller {
    margin-top: auto;
    display: flex;
    justify-content: center;
    gap: 5px;
    padding-bottom: 5px;
}

.file-picker {
    display: flex;
    align-items: center;
    gap: 5px;
}
.file-picker label {
    white-space: nowrap;
}

.file-picker input[type="file"] {
    width: 85px;
}
.music_list {
    margin-top: 10px;
    border: 1px dashed black;
}

#music_list {
    display: block;
    width: 100%;
    height: 100px;
    min-height: 100px;
    background-color: white;
    border: 2px solid red;
    box-sizing: border-box;
    overflow-y: auto;
    user-select: none;
}
[hidden] {
    display: none !important;
}


.my-project {
    height: 500px;
    width: 500px;
    background-color: blueviolet;

    position: absolute;
    top: 80px;
    left: 200px;

    display: flex;
    flex-direction: column;
    border-radius: 10px;
}

.my-project .operation_manager {
    align-self: flex-end;
}

.my-project .operation_manager .program_name_projects{
    margin-right: 325px;
    font-weight: bolder;
    font-style: normal;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.my-project .main-window{
    background-color: white;
    height: 400px;
    width: 425px;
    padding: 20px;
    margin-left: 20px;
    border-radius: 3px;
    overflow-y: auto;
    overflow-x: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 100px;
    gap: 10px;
}
.my-project .main-window span {
    border: 1px solid black;
    border-radius: 3px;
    background-color: rgb(247, 247, 167);
    box-shadow: 2px lightgrey;
    padding: 5px;
}

.my-project .main-window span:last-child{
    grid-column: 1 / -1;
    justify-self: center;
}

.my-project .main-window span:hover{
    transform: scale(1.06);
}

.my-project .main-window span a{
    display: block;
    margin-top: 20px;
    text-decoration: none;
    border: 1px solid black;
    background-color: yellow;
    width: 100px;
    border-radius: 2px;
}