<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-color: #f8f9fa;
}

h1 {
    color: #343a40;
    margin-top: 20px;
}

p {
    /* font-size: 1rem; */
    color: #6c757d;
}
ul {
    /* font-size: 1rem; */
    color: #6c757d;
}
.navbar-brand {
    color:  #01ab7e;;
    margin-left: 10px;
}
.navbar {
    margin-bottom: 20px;
    background-color: #343a40;
    align-items: center;
    text-align: center;

}
/* img-fluid class */
        .img-fluid {
            max-width: 100%;
            height: auto;
            max-height: 300px;
        }
    
        .w-25 {
            width: 25% !important;
            max-width: 300px;
        }
.sidebar {
    margin-top: 10px;
    margin-left: 20px;
    background-color: #343a40;
    align-items: left;
    text-align: left;

}

.footer {
    background-color: #343a40;
    color: white;
    padding: 1px 0;
/*    position: fixed; */
    font-size: small;
    text-align: center;
    align-items: center;
    bottom: 0;
    width: 100%;
}

.container {
    margin-bottom: 100px;
    /* Ensures footer does not overlap content */
}

.red-text {
    color: red;
}

.content-section {
    margin: 20px 0;
}
.radios {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.radios label {
    padding: 12px;
    cursor: pointer;
    width: calc(33.3% - 16px);
    display: block;
    position: relative;
}

.radios input {
    position: absolute;
    top: 1px;
    left: 1px;
}

.radios img {
    display: block;
    width: calc(100% - 8px);
    border: 4px solid #01ab7e;
    aspect-ratio: 1;
}

input:checked+img {
    border-color: #01ab7e;
}

.special::after {
    content: "Special";
    background-color: #f44336;
    color: #fff;
    padding: 1px 4px;
    border-radius: 4px;
    font-size: 0.7em;
    position: absolute;
    top: 5px;
    left: 25px;
}

body .special {
    display: none;
}

body.show-special .special {
    display: initial;
}

.hidden {
    display: none;
}
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
}

.form-group input[type="text"] {
    width: 100%;
    height: 40px;
    padding: 10px;
    border: 1px solid #ccc;
}

.form-group input[type="checkbox"] {
    margin: 5px;
}
.link {
    color: blue;
}

.link:hover {
    color: #FF0000;
}</pre></body></html>