
.task-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    padding: 0;
}

.task-button {
    background-color: #007bff;
    color: #ffffff;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 250px;
    margin-top: 10px;
}

.task-button:disabled {
    background-color: #ddd;
    color: #777;
    cursor: not-allowed;
}

.task-timer {
    font-size: 16px;
    font-weight: 500;
    color: #444;
    margin-bottom: 10px;
}
