.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: #111827;
    transition: all 0.3s ease;
}

.bg-light-danger {
    background-color: #fff;
    border-left: 5px solid #dc3545;
}

.step-progress-container {
    padding: 2rem 1.25rem;
    animation: fadeInUp 0.6s ease-in-out;
}

.step-progress-wrapper {
    position: relative;
    margin-bottom: 2.5rem;
}

.step-line {
    position: absolute;
    top: 26px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #e5e7eb;
    z-index: 0;
}

.step-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    gap: 1rem;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: scale(1.03);
}

.step-item.rejected .step-circle {
    background-color: #dc3545 !important;
    /* Bootstrap danger red */
    color: #fff;
}

.step-item.rejected .step-label {
    color: #dc3545 !important;
}

.step-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #6b7280;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.step-label {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
}

.step-item.active .step-circle {
    background-color: #111827;
    color: #fff;
    box-shadow: 0 0 0 6px rgba(17, 24, 39, 0.2);
}

.step-item.completed .step-circle {
    background-color: #10b981;
    color: #fff;
}

.status-box {
    background-color: #f9fafb;
    border-left: 5px solid #111827;
    max-width: 520px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
}

.status-box i {
    vertical-align: middle;
}

.status-box h5 {
    font-size: 1rem;
    font-weight: 600;
}

.status-box p {
    font-size: 0.9rem;
    color: #374151;
}

.btn-primary {
    background-color: #111827;
    border-color: #111827;
}

.btn-primary:hover {
    background-color: #1f2937;
    border-color: #1f2937;
}

.detail-item {
    background: #fff;
    padding: 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: #f0f4f8;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-theme {
    color: #111827 !important;
}

.info-note {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #111827;
    font-size: 0.925rem;
    line-height: 1.6;
}

.info-note .icon-wrapper {
    min-width: 32px;
    color: #111827;
}

@media (max-width: 576px) {
    .info-note {
        padding: 1rem 1.25rem;
    }

    .info-note ul {
        padding-left: 1.2rem;
    }
}

@media (max-width: 768px) {
    .step-progress {
        flex-direction: column;
        gap: 1.5rem;
    }

    .step-line {
        display: none;
    }
}
