/* Container */
.fs-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 15px;
}

/* Card */
.fs-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

/* Title */
.fs-title {
    text-align: center;
    color: #0073aa;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

/* Steps Tracker */
.fs-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
}

.fs-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 15%;
    right: 15%;
    height: 4px;
    background: #e0e0e0;
    z-index: 0;
}

.fs-message.success {
    border-left: 6px solid #28a745;
    background-color: #eafaf1;
    color: #155724;
    padding: 20px 25px;
    font-size: 1.25rem;
    font-weight: 500;
    border-radius: 6px;
    margin-bottom: 2rem;
}

#pending p {
    border-left: 6px solid #268894;
    background-color: #eafaf1;
    color: #155724;
    padding: 20px 25px;
    font-size: 1.25rem;
    font-weight: 500;
    border-radius: 6px;
    margin-bottom: 2rem;
}

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

.fs-step-circle {
    width: 50px;
    height: 50px;
    background: #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin: 0 auto;
    transition: background 0.3s ease;
}

.fs-step-circle.active {
    background: #f0ad4e;
}

.fs-step-circle.completed {
    background: #28a745;
}

.fs-step-label {
    margin-top: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Step Content */
.fs-status-step {
    text-align: center;
}

.fs-message {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.fs-message.success {
    color: #28a745;
}

.fs-message.muted {
    color: #6c757d;
}

.fs-message.bold {
    font-weight: bold;
}

/* Buttons */
.fs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.3s ease;
    color: #fff;
}

.fs-btn:hover {
    transform: scale(1.05);
}

.fs-btn.warning {
    background: #f0ad4e;
}

.fs-btn.info {
    background: #17a2b8;
}

/* Hide */
.d-none {
    display: none;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#crm-link,.fas.fa-external-link-alt{
    color: black;
    font-size: 13px;
    font-weight: 700;
}