<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    font-family: Arial, sans-serif;
    background: #1c1c1c;
    color: #fff;
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: center;
}

a {
    color: #4a90e2;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

.logout-container {
    display: flex;
    text-align: right;
    align-items: flex-end;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 20%;
}
.logout-button-class {
    margin-left: 5%;
}

.signup-container {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 8px;
    width: 400px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.signup-container h2 {
    text-align: center;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #555;
    background: #333;
    color: #fff;
}
.form-group select {
    cursor: pointer;
}
.error {
    color: #631414;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}
.form-group input.invalid, .form-group select.invalid {
    border: 1px solid #631414;
}

.tsandcs {
    font-size: 10px;
    margin: 0;

}



#loading-container {
    position: fixed; /* Covers the whole screen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark transparent background */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    font-size: 18px;
    font-weight: bold;
    z-index: 1000;
    display: none; /* Initially hidden */
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



.login-container {
    background: #2a2a2a;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 300px;
    margin-top: 50px;
    display: none;
}
.login-container input {
    width: 80%;
    padding: 10px 12px 10px 10px;
    margin: 10px 0;
    border-radius: 4px;
    border: 1px solid #555;
}
button {
    background: #4a90e2;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;

}

button:hover {
    background: #357ab7;
}

button:disabled {
    background: #777;
    color: #ccc;
    cursor: not-allowed;
}

.application-container {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}
nav {
    background: #333;
    display: flex;
    justify-content: center;

    padding: 10px;
    border-radius: 8px;
}
nav ul {
    list-style: none;
    display: flex;
    padding: 0;
}
nav li {
    margin-right: 20px;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 4px;
    font-size: larger;
}

nav a:hover {
    background: #ffffff;
    color: #000000;
    text-decoration: none;
}


nav li.active {
    text-decoration: #1d291a;

}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}



.tab-content {
    display: none;
    text-align: center;
    padding: 20px;
    background: #333;
    border-radius: 8px;
    max-width: 550px;
    min-width: 550px;
    margin-top: 20px;
}
.grid-container {
    display: grid;
    padding: 10px;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
}
.reporting-period {
    display: grid;
    padding: 10px;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 80%;
}
.stat-card {
    background: #2a2a2a;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 20px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}
.stat-card h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #ccc;
}
.stat-card p {
    font-size: 24px;
    font-weight: bold;
}

.stat-card:hover {
    transform: scale(1.05); /* Slightly enlarge the card */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Stronger shadow */
    transition: transform 0.2s, box-shadow 0.2s;
}

.positive-value { color:  #3ad63a; }
.negative-value { color: #8a1f11; }
.account-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #2a2a2a;
    padding: 20px;
    border-radius: 8px;
    max-width: 1000px;
    margin-top: 20px;
}
.account-section {
    width: 100%;
    margin-bottom: 20px;

}
.account-section h2 {
    text-align: center;
    margin-bottom: 10px;
}
.account-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 10px;
    align-items: center;
}
.account-grid label {
    text-align: right;
    padding-right: 10px;
}
.account-grid input, select {
    width: 80%;
    padding: 8px 10px 8px 8px;
    border-radius: 4px;
    border: 1px solid #555;
    background: #333;
    color: #fff;
}
.commission-table {
    width: 80%;
    border-collapse: collapse;
    margin : auto;
}
.commission-table th, .commission-table td {
    padding: 8px;
    text-align: center;
    border: 1px solid #555;
}
.commission-table th {
    background: #444;
}
.tools-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}
.tools-grid label {
    text-align: right;
    padding-right: 10px;
}
.tools-grid select {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #555;
    background: #333;
    color: #fff;
    width: 100%;
}
.banner-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #444;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}
.banner-preview img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}
.gen-link-button-container button {
    max-width : 20%;

}


code, pre {
    font-family: "Fira Code", "Consolas", "Courier New", monospace;
    font-size: 12px;
    background: #222;
    color: #d4d4d4;
    padding: 1px;
    align-content: center;
    justify-content: left;
    border-radius: 5px;
    display: block;
    white-space: pre-wrap;
}


#code-snippet {
    width: 99%;
    height: 60px;
    border: 1px solid #555;
}

.code-container {
    width: 100%;
    border-radius: 2px;
    overflow-x: auto;
    padding : 10px;
}
.code-container pre code {
    position: relative;
}
.code-container pre code::before {
    content: counter(line-number);
    counter-increment: line-number;
    position: absolute;
    left: -30px;
    width: 25px;
    text-align: right;
    color: #888;
}

#gen-link-button-container {
    padding : 10px;
}

.code-container .keyword { color: #569cd6; }
.code-container .string { color: #ce9178; }
.code-container .variable { color: #9cdcfe; }


.cta {
    text-align: center;
    margin: 20px 0;
}
.cta a {
    background: #0073e6;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
}
footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: white;
    margin-top: 20px;
}

.contact-form-container {
    width: 50%;
    margin: auto;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 50px;
}

.contact-form-container form {
    display: flex;
    flex-direction: column;
}
.contact-form-container label {
    font-weight: bold;
    margin-top: 10px;
}
.contact-form-container input, textarea {
    padding: 10px;
    font-size: 16px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}


.faq-section {
    background: #2a2a2a;
    padding: 20px;
    border-radius: 8px;
}
.faq-question {
    font-size: 18px;
    font-weight: bold;
    padding: 15px;
    border-bottom: 1px solid #444;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-container {
    width: 60%;
    margin: auto;
    padding: 40px 0;
    text-align: left;

}
.faq-question:hover {
    background: #333;
}
.faq-answer {
    display: none;
    padding: 15px;
    border-bottom: 1px solid #444;
}
.faq-item:last-child .faq-answer {
    border-bottom: none;
}
.arrow {
    transition: transform 0.3s;
}
</pre></body></html>