﻿.modal-complete-task-content.modal-content {
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.modal-complete-task-content .modal-header {
    border-bottom: none;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.modal-complete-task-content .modal-footer {
    border-top: none;
    padding: 1rem 1.5rem;
}

.modal-complete-task-content .wizard-step {
    display: none;
}

.modal-complete-task-content .wizard-progress {
    list-style: none;
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 2rem;
    position: relative;
}

    .modal-complete-task-content .wizard-progress::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #dee2e6;
        z-index: 1;
        transform: translateY(-50%);
    }

.modal-complete-task-content .wizard-complete-task-progress-item {
    flex-grow: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.modal-complete-task-content .wizard-progress-circle {
    width: 30px;
    height: 30px;
    background-color: #e9ecef;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #6c757d;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.modal-complete-task-content .wizard-complete-task-progress-item.active .wizard-progress-circle {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: white;
    transform: scale(1.1);
}

.modal-complete-task-content .wizard-complete-task-progress-item.completed .wizard-progress-circle {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
}

.modal-complete-task-content .form-check-label {
    cursor: pointer;
}

.modal-complete-task-content .note-input {
    min-height: 120px;
}

.task-selector-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    text-align: center;
}
