/* Project Create Form Styles */

.stepper-container {
    max-width: 800px;
    margin: 0 auto;
}

.stepper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.stepper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: #6c757d;
    transition: all 0.3s ease;
}

.step.active .step-icon {
    background: #0d6efd;
    color: white;
}

.step.completed .step-icon {
    background: #198754;
    color: white;
}

.step-label {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
}

.step.active .step-label {
    color: #0d6efd;
    font-weight: 600;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
}

.slider-container {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.slider-value {
    font-weight: 600;
}

.sortable-list {
    min-height: 200px;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 15px;
    background: #f8f9fa;
}

.sortable-item {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 8px;
    cursor: move;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
}

.sortable-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sortable-item.checked {
    border-color: #198754;
    background: #f8fff9;
}

.sortable-item.unchecked {
    border-color: #ffc107;
    background: #fffbf0;
}

.sortable-item.error {
    border-color: #dc3545;
    background: #fff5f5;
}

.check-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #dee2e6;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.check-btn.checked {
    background: #198754;
    border-color: #198754;
    color: white;
}

.check-btn.unchecked {
    background: #ffc107;
    border-color: #ffc107;
    color: white;
}

.checksum-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.checksum-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.checksum-card.disabled {
    opacity: 0.6;
    background: #f8f9fa;
}

.checksum-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e3f2fd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: #1976d2;
}

.checksum-card.disabled .checksum-icon {
    background: #f5f5f5;
    color: #9e9e9e;
}

.review-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.review-title {
    color: #495057;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 8px;
}

.review-content {
    color: #6c757d;
}

.review-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.review-item:last-child {
    border-bottom: none;
}

.review-label {
    font-weight: 500;
    color: #495057;
}

.review-value {
    color: #6c757d;
}

/* Sortable.js specific styles */
.sortable-ghost {
    opacity: 0.5;
    background: #f8f9fa !important;
}

.sortable-chosen {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.sortable-drag {
    transform: rotate(5deg);
} 