#noTasks {
    font-family: "Lato", impact;
    font-size: 30px;
    text-align: center;
    margin-top: 10%;
}

body {
    font-family: "Nunito", Arial;
    background-color: #191919;
    color: white;
}

.hide {
    display: none;
}

nav {
    background-color: #111111;
    font-family: "Lato", sans-serif;
    height: auto;
    padding: 0px 20px 10px 20px;
    position: sticky;
}

nav button {
    width: 20%;
    color: #e9e9e9;
    background-color: #393939;
    border-radius: 10px;
}

.aLeft {
    align-content: center;
    float: left;
    margin: 0px 20px;
}

.aRight {
    float: right;
}

.task {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 94%;
    padding: 15px;
    border: 5px solid #222222;
    border-radius: 5px;
    background-color: #292929;
    margin: 3% 0;
}

.taskComplete {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 94%;
    padding: 15px;
    border: 5px solid #222222;
    border-radius: 5px;
    color: grey;
    background-color: #292929;
    margin: 3% 0;
}

.taskContent {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-grow: 1;
}

.taskButtons {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.task-priority {
    font-weight: bold;
}

.priority-low {
    color: #4caf50; /* green */
}

.priority-medium {
    color: #ff9800; /* orange */
}

.priority-high {
    color: #f44336; /* red */
}

#rename {
    position: fixed;
    background-color: #303030;
    padding: 3%;
    margin: 10%;
    justify-content: center;
    text-align: center;
    z-index: 100;
}

#rename p {
    text-align: center;
    margin-bottom: -22px;
    margin-right: 250px;
}

#rename input {
    display: flex;
    text-align: center;
    margin: auto;
}

#reDate {
    position: fixed;
    background-color: #303030;
    padding: 3%;
    margin: 10%;
    justify-content: center;
    text-align: center;
    z-index: 100;
}

#reDate p {
    text-align: center;
    margin-bottom: -22px;
    margin-right: 250px;
}

#reDate input {
    display: flex;
    text-align: center;
    margin: auto;
}

.blur {
    filter: blur(10px);
}

.button {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    color: white;
}

.button:hover {
    cursor: pointer;
}