* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* body {
    background-color: #c2bca6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
} */

.container-progress {
    background-color: #f8f8f8;
    width: 400px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 0 auto;
}

h2 {
    font-size: 22px;
    color: #333;
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    position: relative;
}

/* .progress-bar::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 4px;
    background-color: #ddd;
    transform: translateY(-50%);
    z-index: 0;
} */

.circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-size: 16px;
    color: transparent;
}

.completed .circle {
    background-color: #6dbd63;
    color: white;
    border-color: #6dbd63;
}

.step p {
    margin-top: 5px;
    font-size: 12px;
    color: #666;
}

.task-details {
    text-align: left;
    margin-top: 20px;
}

h3 {
    font-size: 20px;
    color: #333;
    padding: 10px 0;
}

.task-details p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.detail {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.icon {
    width: 30px;
    height: 30px;
    background-color: #6dbd63;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 16px;
    margin-right: 10px;
}

.red {
    background-color: #e74c3c;
}

.detail h4 {
    font-size: 14px;
    color: #333;
}

.detail p {
    font-size: 12px;
    color: #666;
}

.buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.next-step {
    background-color: #6dbd63;
    color: white;
    border: none;
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
}

.end-task {
    background-color: white;
    color: #e74c3c;
    border: 2px solid #e74c3c;
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
}
/* .task-progress-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
} */

.task-header {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.progress-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: bold;
    color: white;
}

.progress-circle.done {
    background-color: #4caf50;
}

.progress-line {
    flex: 1;
    height: 4px;
    background-color: #ccc;
    margin: 0 10px;
}

.progress-line.done {
    background-color: #4caf50;
}

.task-details {
    text-align: left;
    margin-top: 20px;
}

.task-detail {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.task-detail-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: white;
}

.task-detail-icon.green {
    background-color: #4caf50;
}

.task-detail-icon.red {
    background-color: #f44336;
}

.task-detail-text {
    margin-left: 10px;
    font-size: 0.9rem;
}

.buttons {
    margin-top: 20px;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button#nextStep {
    background-color: #4caf50;
    color: white;
}

button#endTask {
    background-color: #f44336;
    color: white;
}