
.tab-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.tab {
    padding: 10px 20px;
    background-color: #363b5670;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}
.tab:hover {
    background-color: #777777;
}
.tab.active {
    background-color: #101b4f;
}
.content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.content-section {
    display: none;
}
.content-section.active {
    display: block;
}
ol {
    padding-left: 20px;
}
.note {
    background-color: #f9f9f9;
    border-left: 5px solid #101b4f;
    padding: 10px;
    margin-top: 20px;
}
@media (max-width: 600px) {
    .tab-container {
        flex-direction: column;
    }
    .tab {
        width: 100%;
        margin-bottom: 5px;
    }
}

.referral-steps {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 20px; /* Add some padding */
    border-radius: 5px; /* Rounded corners */
    margin-top: 20px; /* Space above the section */
}

.referral-steps ol {
    list-style-type: decimal; /* Ensure ordered list style */
}

.referral-steps li {
    margin-bottom: 15px; /* Increased space between steps */
}