 .back-dashboard {
                       color: #e942ed;

                       font-size: 14px;
                       text-decoration: none;
                       display: inline-block;
                       margin-bottom: 20px;
                   }

                   .back-dashboard i {
                       margin-right: 5px;
                   }

                   .sidebar-step {
                       background-color: #001c55;
                       /* dark blue card */
                       border-radius: 8px;
                       padding: 10px 12px;
                       margin-bottom: 10px;
                       color: white;
                       position: relative;
                       display: block;
                       text-decoration: none;
                       transition: background 0.2s;
                   }

                   .sidebar-step:hover {
                       background-color: #033b85;
                   }

                   .sidebar-step.active {
                       background-color: #dbe9ff;
                       color: #001c55;
                       font-weight: 600;
                   }

                   .sidebar-step .step-title {
                       font-size: 15px;
                       font-weight: bold;
                   }

                   .sidebar-step .step-status {
                       font-size: 13px;
                       margin-top: 4px;
                       color: #88e0a8;
                       /* light green for "Completed" */
                   }

                   .sidebar-step.in-progress .step-status {
                       color: #ccc;
                   }

                   .sidebar-step .checkmark {
                       position: absolute;
                       right: 12px;
                       top: 16px;
                       background-color: #28a745;
                       color: white;
                       border-radius: 50%;
                       width: 18px;
                       height: 18px;
                       font-size: 12px;
                       text-align: center;
                       line-height: 18px;
                   }