.todo-list-container {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 2rem;
    padding: 1rem 1rem;
}

.todo-tasks {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1rem;
}

.title {
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    color: #1e293b;
}

.disabled {
    cursor: not-allowed;
}

.title-input {
    flex: 1;
    padding: 0.5rem;
    font-size: 1.5rem;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
}

.input-row {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.input-row input {
    flex: 1;
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
}

.input-row input:disabled {
    cursor: not-allowed;
}

.input-row button {
    padding: 0.5rem 1rem;
    background-color: #10b981;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.input-row button:hover {
    background-color: #059669;
    color: white;
}

.input-row button:disabled {
    padding: 0.5rem 1rem;
    background-color: #7bb2a0;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: not-allowed;
}

.progress-bar-wrapper {
    margin-bottom: 0.5rem;
}

.progress-bar {
    height: 10px;
    background-color: #e5e7eb;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background-color: #10b981;
}

.progress-text {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    width: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-body input {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
}

.modal-footer button {
    padding: 0.5rem 1rem;
    background-color: #10b981;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.modal-footer button:hover {
    background-color: #059669;
}
