body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.tab {
    display: flex;
    background-color: #6b44c4;
    padding: 10px;
}

.tab button {
    background-color: #6b44c4;
    color: white;
    border: none;
    padding: 14px 20px;
    cursor: pointer;
    flex: 1;
}

.tab button:hover {
    background-color: #53389e;
}

.tab button.active {
    background-color: #866bd1;
}

.tabcontent {
    display: none;
    padding: 20px;
    border: 1px solid #ccc;
    border-top: none;
    background-color: white;
}

.tabcontent.active {
    display: block;
}

a {
    color: #6b44c4;
    font-weight: bold;
}

span.subtitle {
    color: #6b44c4;
    font-weight: bold;
}

span.bold {
    font-weight: bold;
}
