/* Podstawowy styl */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Tahoma, Arial, sans-serif;
    overflow: hidden;
}

.desktop {
    width: 100vw;
    height: 100vh;
    background: url('img/wallpaper.png') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 20px;
}

.icon {
    text-align: center;
    color: white;
    width: 80px;
    cursor: pointer;
}

.icon img {
    width: 48px;
    height: auto;
}

.icon span {
    display: block;
    margin-top: 5px;
}

/* Pasek zadań */
.taskbar {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40px;
    background-color: #1c1c1c;
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.start-button {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    background-color: #1a73e8;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.start-button img {
    width: 20px;
    height: auto;
    margin-right: 5px;
}

/* Menu Start */
.start-menu {
    display: none;
    position: absolute;
    bottom: 45px;
    left: 10px;
    width: 150px;
    background-color: #eaeaea;
    border: 1px solid #999;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    font-family: Tahoma, Arial, sans-serif;
}

.start-menu ul {
    list-style: none;
    padding: 10px;
}

.start-menu li {
    padding: 8px;
    cursor: pointer;
}

.start-menu li:hover {
    background-color: #d4d4d4;
}

/* Okno winver */
.winver-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    border: 2px solid #1a73e8;
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.winver-header {
    display: flex;
    justify-content: space-between;
    padding: 5px 10px;
    background-color: #007acc;
    color: white;
    cursor: move;
}

.winver-header button {
    background: none;
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.winver-content {
    padding: 20px;
    text-align: center;
    font-family: Tahoma, Arial, sans-serif;
}

.winver-content h2 {
    margin-bottom: 10px;
    color: #1a73e8;
}

.winver-content p {
    margin: 5px 0;
    color: #333;
}

.winver-content button {
    margin-top: 15px;
    padding: 5px 10px;
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.winver-content button:hover {
    background-color: #155ca8;
}

/* Styl dla okna My Computer */
.mycomputer-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    border: 2px solid #1a73e8;
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    font-family: Tahoma, Arial, sans-serif;
}

.mycomputer-header {
    display: flex;
    justify-content: space-between;
    padding: 5px 10px;
    background-color: #007acc;
    color: white;
    cursor: move;
}

.mycomputer-header button {
    background: none;
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.mycomputer-content {
    padding: 20px;
    text-align: left;
}

.mycomputer-content ul {
    list-style-type: none;
    padding: 0;
}

.mycomputer-content li {
    margin: 8px 0;
}

/* Styl dla okna winver */
.winver-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    border: 2px solid #1a73e8;
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    font-family: Tahoma, Arial, sans-serif;
}

.winver-header {
    display: flex;
    justify-content: space-between;
    padding: 5px 10px;
    background-color: #007acc;
    color: white;
    cursor: move;
}

.winver-header button {
    background: none;
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.winver-content {
    padding: 20px;
    text-align: left;
}

/* Styl dla okna Eksploratora Windows */
.explorer-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    border: 2px solid #1a73e8;
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    font-family: Tahoma, Arial, sans-serif;
}

.explorer-header {
    display: flex;
    justify-content: space-between;
    padding: 5px 10px;
    background-color: #007acc;
    color: white;
    cursor: move;
}

.explorer-header button {
    background: none;
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.explorer-content {
    display: flex;
    padding: 10px;
}

.left-panel {
    width: 30%;
    border-right: 1px solid #ccc;
    padding-right: 10px;
}

.right-panel {
    width: 70%;
    padding-left: 10px;
}

.left-panel ul, .right-panel ul {
    list-style-type: none;
    padding: 0;
}

.left-panel li, .right-panel li {
    margin: 5px 0;
}
