.process-dashboard-frame {
    background: #00020f;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    position: relative;
    font-family: 'Inter', sans-serif;
}

.process-dashboard-top {
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.process-dashboard-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.process-dashboard-logo img {
    height: 18px;
}

.process-dashboard-icons {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.process-dashboard-body {
    padding: 40px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(0, 255, 151, 0.05) 0%, transparent 70%);
    position: relative;
}

.process-dashboard-body img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.process-dashboard-bottom {
    background: #00020f;
    padding: 30px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.process-dashboard-title {
    color: white;
    font-size: 32px;
    font-weight: 400; /* Thinner */
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.process-dashboard-title i {
    font-size: 24px;
    color: #00ff97;
}

.process-dashboard-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    text-align: left; /* Left align */
}

/* Animations for the steps */
.xb-process-item {
    opacity: 1;
    visibility: visible;
    height: auto;
    margin-bottom: 40px; /* Spacing between stacked items */
}
.xb-process-item.active {
    animation: none; /* Remove single-item animation */
}

.xb-process-step {
    cursor: pointer;
}
