body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90vh;
    background-color: #121212; /* Dark background color */
    color: #fff; /* Light text color */
}

.container {
    background-color: #1e1e1e; /* Darker background color for the container */
    padding: 0 10%;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.1); /* Light shadow */
    width: 50%;
    min-height: 65%;
    display: flex;
    flex-direction: column;
}

#header {
    align-items: center;
    text-align: center;
    cursor: default;
    color: #ff00ff; /* Dark magenta text color */

}

#taskCounters {
    display: flex; /* Align task counters in a row */
    justify-content: space-around; /* Add space around task counters */
    margin-bottom: 7%;
}

.task-counter {
    font-size: 14px;
    padding: 8px;
    margin: 0 5px;
    border: 1px solid #ff00ff;
    border-radius: 15px;
    color: #fff;
    cursor: default;
    background-color: #8b008b; /* Use a solid color instead of gradient */
}

.task-counter:hover {
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}

#taskList {
    list-style: none;
    text-align: center;
    border: 1px solid #8b008b;
    border-radius: 4px;
    padding: 0;
    max-height: 25vh; /* Adjust this value based on your preferred maximum height */
    min-height: 20vh;
    overflow-y: auto;
}

#taskList::-webkit-scrollbar {
    width: 12px; /* Adjust the width as needed */
}

#taskList::-webkit-scrollbar-thumb {
    background-color: #171717; /* Dark magenta color for the thumb */
    border-radius: 6px;
    border: 1px solid #8b008b;
}

#taskList::-webkit-scrollbar-track {
    background-color: #292929; /* Darker background color for the track */
}



#taskList li {
    background-color: #292929; /* Darker background color for tasks */
    padding: 10px;
    margin: 2%;
    border-radius: 4px;
    border: 1px solid #ff00ff;
}

.task-icon {
    cursor: pointer;
    margin: 0 5%;
    font-size: 18px;
    padding: 1%;
    border: 1px solid #292929;
}

.task-icon:hover {
    border: 1px solid #990099;
    border-radius: 4px;
}

.remove-icon {
    color: red;
}

.done-icon {
    color: green;
}

#addTask {
    align-items: center;
    display: flex;
    margin: 2%;
    margin: 7% 0 0 0;
} 

.task-input-container {
    width: 100%;
}

#newTask {
    padding: 15px;
    border: 1px solid #444;
    border-radius: 4px 0 0 4px;
    background-color: #333;
    color: #fff;
}

#newTask:focus {
    border-color: #6f00ff; /* Dark magenta border color on focus */
    outline: none;
}

button#addTaskButton {
    padding: 15px;
    background-color: #ff00ff;
    color: #fff;
    border: 1px solid #ffffff00;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

button#addTaskButton:disabled {
    background-color: #888; /* Change to the desired color for the disabled state */
    cursor: default; /* Change cursor style for better indication */
}

button#addTaskButton:disabled:hover {
    background-color: #88888874;
    border: 1px solid #ffffff00;
}

button#addTaskButton:hover {
    background-color: #990099;
    border-color: #fff;
}

#footer {
    cursor: default;
}

#footer p {
    font-size: 12px;
    color: gray;
    text-align: center;
}

#searchInput {
    padding: 10px;
    border: 1px solid #555;
    border-radius: 4px;
    margin-bottom: 15px;
    width: 100%;
    box-sizing: border-box;
    background-color: #333;
    color: #fff;
}

#searchInput::placeholder {
    color: #888;
}

#searchInput:focus {
    border-color: #6f00ff; /* Dark magenta border color on focus */
    outline: none;
}