.center-icon {
    position: absolute;
    top: 100; /* Adjust this value to move the icon further up */
    left: 50%;
    transform: translate(-50%, 0); /* Center horizontally */
    cursor: pointer;
}
.bottom-icons .icon {
    background-color: #000000;
    border: 2px solid #000000;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    user-select: none;
    margin-bottom: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bottom-icons .icon img {
    max-width: 40px;
    max-height: 40px;
    margin-bottom: 5px;
}



#tasks-window input {
    width: 80%;
    padding: 10px;
    margin: 10px ;
}

#tasks-window button {
    width: 100%;
    padding: 10px;
    background: #030000;
    border: none;
    font-family: inherit;
    text-align: center;
    cursor: pointer;
    transition: 0.4s;
    border-radius: 9px;
    color: #fff;
}

#tasks-window button:hover {
    background:#252525; 
        
}




.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.popup-content {
    position: relative;
    background-color: #fff;
    padding: 20px;
    max-width: 90%;
    width: 400px;
    border-radius: 8px;
    text-align: center;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}


.box a:hover {
    color: #33aaff; /* Changes text color on hover */
    font-weight: bold;
  }
  


  /* Change the cursor globally */
body {
    cursor: url('navigation.png'), auto; /* Replace 'custom-cursor.png' with the path to your cursor image */
}

/* Optional: Change the cursor for specific elements */
a {
    cursor: pointer; /* Use the default pointer for links */
}

button {
    cursor: pointer; /* Use the default pointer for buttons */
}
