﻿ 
.progress-indicator {
    margin-bottom: 20px;
}

.step-item {
    cursor: pointer;
    transition: all 0.2s ease;
}

    .step-item:hover {
        background-color: rgba(85, 110, 230, 0.05);
    }

.step-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #495057;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.step-text {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Summary Section Styling */
.summary-item {
    cursor: pointer;
    transition: all 0.2s ease;
}

    .summary-item:hover {
        background-color: rgba(85, 110, 230, 0.05);
    }

.summary-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Paper Cards Styling */
.paper-form .card-header {
    cursor: pointer;
}

.paper-form .card {
    border: 1px solid rgba(0,0,0,.125);
    transition: all 0.2s ease;
}

    .paper-form .card:hover {
        box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.1) !important;
    }

/* Form Controls */
.form-control-sm, .form-select-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

.form-label.small {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.card-header {
    border-radius: calc(0.375rem - 1px) calc(0.375rem - 1px) 0 0 !important;
    padding: 0.75rem 1rem;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075) !important;
}

.list-group-item {
    font-size: 0.875rem;
}

.paper-select {
    margin-right: 10px;
}

/* Status Icons */
.mdi-circle-outline.text-secondary {
    opacity: 0.6;
}

.mdi-check-circle.text-success {
    font-size: 1.1em;
}

.mdi-alert-circle.text-warning {
    font-size: 1.1em;
}

@media (max-width: 992px) {
    .step-text {
        font-size: 0.75rem;
    }

    .step-number {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
}
 
