:root {
    /* FONTS */
    --method-font-family: "Nunito", sans-serif;
}

/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    /* box-sizing: border-box; */
}
body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    /* font-size: 15px; */
    line-height: 20px;
    font-family: var(--font-family-main);
    color: var(--color-text-main);
    background-color: var(--color-background-main);
}
a:link, a:visited, .link-like {
    color: var(--color-link);
    text-decoration: none;
}
a:hover, .link-like:hover {
    color: var(--color-link-hover);
}
a.main-logo {
    display: block;
    width: 140px;
    height: 56px;
    background-image: var(--image-logo);
}
pre {
    padding: 0;
    line-height: 18px;
    font-size: 13px;
    border: var(--border-pre);
    margin-top: 12px;
    margin-bottom: 10px;
}
h1 {
    font-family: var(--font-family-h1);
    color: var(--color-h1);
    font-size: 30px;
    line-height: 30px;
    margin-top: 40px;
    margin-bottom: 30px;
}
h2 {
    font-family: var(--font-family-h2);
    color: var(--color-h2);
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: normal;
    font-size: 20px;
    line-height: 20px;
}
h3 {
    padding: 10px;
    margin-left: 10px;
    margin-top: 20px;
    font-size: 18px;
    line-height: 18px;
    font-family: var(--font-family-h3);
    color: var(--color-h3);
}
h4 {
    padding: 10px;
    margin-left: 10px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 16px;
    font-family: var(--font-family-h4);
    color: var(--color-h4);
}
p {
    margin: 1em;
}
.bold {
    font-weight: bold;
}
.w-100 {
    width: 100px !important;
}
.w-150 {
    width: 150px !important;
}
.w-160 {
    width: 160px !important;
}
.w-200 {
    width: 200px !important;
}
.w-250 {
    width: 250px !important;
}
.w-300 {
    width: 300px !important;
}
.mt-20 {
    margin-top: 20px;
}

.inline {
    display: inline;
}
.color-inherit {
    color: inherit;
}
.checkbox-label-span {
    margin-left: -10px;
    margin-right: 10px;
}

.remove-button {
    display: inline-block;
    padding: 3px;
    line-height: 1em;
    padding-bottom: 4px;
    margin-top: 0;
    cursor: pointer;
}
.remove-button:hover {
    background-color: var(--remove-button-hover);
}
.alt {
    color: var(--color-text-main);
    border-color: var(--color-text-main);
}
.modal {
    background-color: var(--color-background-modal);
}
.modal p {
    margin-top: 10px;
    margin-bottom: 10px;
}
.version-div {
    text-align: right;
    margin-bottom: 40px;
    margin-top: -26px;
    padding: 0;
}
.version-div .version-number {
    font-size: 1.15em;
    font-weight: bold;
    color: var(--color-version-number);
}
.mg-table {
    border-collapse: collapse;
    width: 100%;
}
.mg-table thead td {
    font-size: 12px;
    text-align: center;
    font-weight: bold;
}
.mg-table td {
    border: 1px solid;
    padding: 4px 6px;
    font-size: 14px;
    line-height: 18px;
}
.mg-table .version-td {
    font-size: 11px !important;
    color: var(--color-datatype-link);
    width: 40px;
}
.centered {
    text-align: center;
    padding: 10px;
    margin-left: -64px;
}
.centered .caption {
    font-style: italic;
    font-size: 14px;
    font-family: var(--font-family-caption);
    padding: 0 !important;
}
.method-link {
    font-family: var(--method-font-family);
    text-decoration: none;
    font-size: 16px;
}
.class-link {
    font-family: var(--font-family-h1);
    text-decoration: none;
}
.code-select-button,
.code-copy-button {
    padding: 2px 10px;
    display: inline-block;
    cursor: pointer;
    font-size: 12px;
    color: var(--color-code-select-button);
    background-color: var(--color-background-code-select-button);
    position: relative;
    bottom: 20px;
    margin-bottom: 10px;
}
.code-copy-button {
    min-width: 97px;
}
/* .class-link:link, .class-link:visited,
.method-link:link, .method-link:visited {
    color: var(--color-link) !important;
} */
.return-class-link,
.return-type,
.property-class-link,
.data-type {
    color: var(--color-datatype-link) !important;
    font-size: .88em;
    font-family: var(--font-family-h1);
}
a.return-class-link:hover,
a.return-type:hover,
a.property-class-link:hover,
a.data-type:hover {
    color: var(--color-link-hover) !important;
}

.constant-name {
    font-weight: bold;
    font-family: var(--font-family-constant-names);
    color: var(--color-text-constant-name);
}
.history-records-summary {
    margin-top: 40px;
    font-size: 12px;
}
.modal {
    max-width: 800px;
    max-height: 70%;
    overflow-y: auto;
}
.modal h2 {
    margin-top: 0;
}
/* .modal input[type="text"], .modal textarea {
    padding: 4px;
}
.modal label {
    margin-top: 4px;
    margin-bottom: 2px;
} */

.description-textarea {
    height: 300px;
}
.article-body-textarea, .snippet-body-textarea {
    height: 400px;
}
.admin-comment-textarea {
    height: 100px;
}
.buttons-div {
    display: grid;
}
.buttons-div.two-buttons {
    grid-template-columns: 25% 25%;
    justify-content: space-between;
}
input[type="text"] {
    background-color: var(--color-background-input) !important;
    color: var(--color-input) !important;
}
input[type="text"]:focus {
    background-color: var(--color-background-input-focus) !important;
}
textarea {
    background-color: var(--color-background-textarea) !important;
    color: var(--color-textarea) !important;
}
textarea:focus {
    background-color: var(--color-background-textarea-focus) !important;
}
textarea:disabled {
    background-color: var(--color-background-disabled) !important;
}
.collapsible-heading {
    cursor: pointer;
    padding: 2px 4px;
}
.collapsible-heading:hover {
    background-color: var(--color-background-collapsible-heading);
}
.collapsible-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.admin-controls {
    font-size: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.has-edit-link {
    position: relative;
}
.edit-link {
    position: absolute;
    font-size: 10px;
    top:-2px;
    right: 0;
    opacity: .5;
    transition: opacity .5s, font-size .1s;
}
.edit-link:hover {
    font-size: 15px;
    opacity: 1;
    display: inline-block;
    padding: 6px;
    background-color: var(--color-background-edit-link);
    border-radius: 4px;
    text-decoration: none;
}
.constant-department-permalink {
    font-size: 9px;
    font-weight: normal;
    position: relative;
}
.constant-department-description {
    margin-bottom: 12px;
}
.constant-department-edit-div {
    top: -30px;
}

/* Container Layout */
.main-content-no-menu {
    padding: 20px;
}
.main-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    /* Fixed width sidebar, flexible content */
    grid-template-rows: auto 1fr;
    grid-template-areas:
        "side-nav top-menu"
        "side-nav main-content";
    height: 100%;
}
/* Top Menu */
.top-menu {
    grid-area: top-menu;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    padding-right: 20px;
    padding-bottom: 0;
    position: relative;
}
.top-nav {
    padding-bottom: 4px;
}
.top-nav a {
    text-decoration: none;
    margin: 0 10px;
}
.top-nav a:hover {
    text-decoration: underline;
}
/* Menu Button (Hamburger) for Mobile */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background-color: var(--color-background-menu-toggle);
    border: none;
    cursor: pointer;
    float: right;
    padding: 8px;
}
.search {
    display: inline-block;
}
.top-search-form {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.search-subject-input {
    padding: 3px !important;
    border-radius: 3px 0 0 3px !important;
    width: 180px !important;
    border-right: 0;
}
.search-submit {
    width: 24px;
    height: 26px;
    background-image: var(--image-background-search-submit);
    outline: none;
    border: 1px solid;
    border-radius: 0 3px 3px 0;
    border-color: var(--color-border-search-submit);
    background-color: var(--color-background-search-submit);
    background-repeat: no-repeat;
    background-position: 2px, 2px;
}
/* Left Navigation Menu */
.side-nav {
    grid-area: side-nav;
    background-color: var(--color-background-side-nav);
    padding: 15px;
    overflow-y: auto;
    width: 280px;
    box-sizing: border-box;
    font-family: "Monda", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 60px;
}
.side-nav ul {
    list-style: none;
    margin: inherit;
    margin-bottom: 2px;
}
.side-nav li {
    padding-left: 10px;
    line-height: inherit;
}
.side-nav a {
    text-decoration: none;
    display: block;
    border-radius: 4px;
}
.side-nav a:hover,
.side-nav .selected a,
.side-nav a.selected {
    background-color: var(--color-side-menu-hover);
}
.modules-divider {
    font-size: 14px;
    margin-top: 12px;
    margin-bottom: 4px;
}

/* Main Content */
.main-content {
    grid-area: main-content;
    overflow-y: auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    min-height: 90vh;
}
footer {
    background-color: var(--color-background-footer);
    padding: 30px;
}
.footer-div {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.footer-div ul {
    list-style-type: none;
}
.main-section {
    width: 96%;
    max-width: 960px;
    text-align: left;
    display: block;
    margin: 0 auto;
    flex: 1;
    padding: 20px;
}
.channel-codes-select-div {
    margin-bottom: 20px;
}

/* Tables */
.methods-table {
    background-color: var(--color-background-methods);
}
.methods-table tr:nth-child(odd){
    background-color: var(--color-background-methods-odd);
}
.methods-table tr:hover, .methods-table tr:nth-child(odd):hover{
    background-color: var(--color-background-methods-hover);
}
.methods-table thead td {
    background-color: var(--color-background-methods-thead);
    color: var(--color-text-methods-thead);
}
.methods-table td {
    border-color: var(--color-border-methods);
}
.methods-table .method-name-span {
    position: relative;    
}
.methods-table .method-name-span .method-signature {
    position: absolute;
    background-color: var(--color-background-tooltip);
    border: 1px solid var(--color-border-tooltip);
    box-shadow: var(--box-shadow-tooltip);
    font-family: var(--font-family-h2);
    font-size: 15px;
    padding: 12px;
    z-index: 2;
    white-space: nowrap;
    bottom: 100%;
    left: 50%;
    opacity: 0;
    transition: opacity .3s;
    visibility: hidden;
}
.methods-table .method-name-span:hover .method-signature {
    visibility: visible;
    opacity: 1;
    width: auto;
    height: auto;
    cursor: pointer;
}
.methods-table .method-name-span:hover .method-signature:hover {
    background-color: var(--color-background-method-tooltip-hover);
}
.method-signature .signature-method-name {
    color: var(--color-signature-method-name);
    margin-right: 2px;
}
.method-signature .signature-parenthesis {
    color: var(--color-signature-parenthesis);
}
.method-signature .signature-arguments {
    color: var(--color-signature-arguments);
}
.method-signature-large {
    cursor: pointer;
}
.constants-table {
    background-color: var(--color-background-constants);
}
.constants-table tr:nth-child(odd){
    background-color: var(--color-background-constants-odd);
}
.constants-table tr:hover, .constants-table tr:nth-child(odd):hover{
    background-color: var(--color-background-constants-hover);
}
.constants-table thead td {
    background-color: var(--color-background-constants-thead);
    color: var(--color-text-constants-thead);
}
.constants-table td {
    border-color: var(--color-border-constants);
}
.constants-table td.constant-name {
    width: 100px;
}
.constants-table td.constant-name {
    cursor: pointer;
}
.constants-table td.constant-name:hover {
    background-color: var(--color-background-constant-copy-hover);
}
.properties-table {
    background-color: var(--color-background-properties);
}
.properties-table tr:nth-child(odd){
    background-color: var(--color-background-properties-odd);
}
.properties-table tr:hover, .properties-table tr:nth-child(odd):hover{
    background-color: var(--color-background-properties-hover);
}
.properties-table thead td {
    background-color: var(--color-background-properties-thead);
    color: var(--color-text-properties-thead);
}
.properties-table td {
    border-color: var(--color-border-properties);
}
.properties-table td.property-name {
    cursor: pointer;
}
.properties-table td.property-name:hover {
    background-color: var(--color-background-property-copy-hover);
}

.arguments-table {
    background-color: var(--color-background-arguments);
    margin-bottom: 20px;
}
.arguments-table tr:nth-child(odd){
    background-color: var(--color-background-arguments-odd);
}
.arguments-table tr:hover, .arguments-table tr:nth-child(odd):hover{
    background-color: var(--color-background-arguments-hover);
}
.arguments-table thead td {
    background-color: var(--color-background-arguments-thead);
    color: var(--color-text-arguments-thead);
}
.arguments-table td {
    border-color: var(--color-border-arguments);
}

.channel-codes-table {
    background-color: var(--color-background-channel-codes);
    margin-bottom: 20px;
}
.channel-codes-table tr:nth-child(odd){
    background-color: var(--color-background-channel-codes-odd);
}
.channel-codes-table tr:hover, .channel-codes-table tr:nth-child(odd):hover{
    background-color: var(--color-background-channel-codes-hover);
}
.channel-codes-table thead td {
    background-color: var(--color-background-channel-codes-thead);
    color: var(--color-text-channel-codes-thead);
}
.channel-codes-table td {
    border-color: var(--color-border-channel-codes);
}

.history-summary-table {
    background-color: var(--color-background-history-summary);
    margin-bottom: 20px;
}
.history-summary-table tr:nth-child(odd){
    background-color: var(--color-background-history-summary-odd);
}
.history-summary-table tr:hover, .history-summary-table tr:nth-child(odd):hover{
    background-color: var(--color-background-history-summary-hover);
}
.history-summary-table thead td {
    background-color: var(--color-background-history-summary-thead);
    color: var(--color-text-history-summary-thead);
}
.history-summary-table td {
    border-color: var(--color-border-history-summary);
}

/* Module */
.module-heading {
    font-weight: 400;

}
.module-heading > .module-name {
    font-weight: 700;
}

/* Class */
.inheritance-div {
    font-family: var(--font-family-h1);
    font-size: 16px;
    margin-top: -42px;
    margin-bottom: 24px;
    
}
.inheritance-div span {
    font-weight: bold;
    color: var(--color-h3);
}
.inheritance-div span, .inheritance-div a {
    margin-right: 3px;
}
h2 .class-name { 
    font-family: var(--font-family-h1);
    font-weight: bold;
}

/* Method */
.full-method-signature {
    font-weight: normal;
}
.method-parent-name, .method-separator {
    color: var(--color-datatype-link);
}
.method-name {
    font-family: var(--font-family-h2);
    color: var(--color-text-methods-thead);
}
.method-signature-parenthesis, .argument-names {
    color: var(--color-text-main);
}
.method-returns-div {
    padding-left: 20px;
    margin-bottom: 40px;
}
.method-return-div {
    margin-bottom: 2px;
}
.method-search-results {
    margin-bottom: 40px;
}
.method-search-result {
    margin-bottom: 3px;
}
.method-search-result .view-code {
    font-weight: bold;
    font-size: .9em;
}
.custom-highlight {
    background-color: yellow;
    color: black;
    font-weight: bold;
    border-radius: 3px;
    padding: 2px;
}
.method-id {
    margin-top: 30px;
    margin-bottom: -20px;
    color: var(--color-datatype-link);
}

.related-methods-wrapper {
    margin-top: 60px;
}
.related-methods-section {
    border: 1px solid;
    border-radius: 10px;
    border-color: var(--color-border-related-methods);
    background-color: var(--color-background-related-methods);
    padding: 10px;
    margin-bottom: 20px;
}
.related-methods-section h2 {
    margin-top: 0;
}
.related-methods-section .admin-controls {
    bottom: 20px;
}

.related-method {
    white-space: nowrap;
}
.related-method input,
.related-method label,
.related-method span,
.related-method div {
    display: inline-block;
    margin: 2px;
}
.back-to-parent-link {
    display: inline-block;
    background-color: var(--primary);
    padding: 14px;
    border-radius: 5px;
    color: var(--color-button) !important;
    text-decoration: none;
}
.back-to-parent-link:hover {
    color: var(--color-link-hover) !important;
}
.back-to-parent-link b {
    font-family: var(--font-family-h1);
}

/* User Login/Registration */
.anti-spam {
    text-align: center;
}
.buttons.submit-cancel{
    text-align: center;
}

/* Edit My Profile */
.edit-profile .generate-new-code-button {
    display: inline-block;
    margin-left: 10px;
    padding: 3px;
    width: auto;
}

/* Change my password */
.change-my-password-button {
    background: none;
    display: inline;
    color: var(--primary);
    border: none;
    padding: 0;
    font: inherit;
    text-decoration: underline;
    cursor: pointer;
}
.change-my-password-button:hover{
    background: none;
    border: none;
    color: var(--primary);
}


.buttons {
    margin-top: 30px;
}
.buttons button,
.buttons a.button {
    margin-right: 20px;
}
@media screen and (max-width: 550px) {
    .buttons button,
    .buttons a.button{
        margin-right: 0;
    }
}


.search-short-description {
    margin-left: 2px;
}
.back-to-all-tags {
    margin-top: 40px;
}
.snippet-tag-links {
    margin-top: 20px;
}
.snippet-tag-link {
    margin-left: 20px;
}
.snippet-tag-name {
    display: inline-block;
}

/* Moho Versions Page */
.moho-versions-table thead td {
    text-align: center;
    font-weight: bold;
}

/* New Features Page */
.features-sub-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: -20px;
    margin-left: 50px;
    margin-bottom: 20px;
    color: var(--color-version-number);
}
#moho-version-select {
    width: auto;
}
.module-heading {
    /* font-weight: bold; */
    font-size: 1.8em;
    font-family: var(--font-family-h1);
    color: var(--color-h3);
}
.heading-3 {
    font-weight: 400;
    font-size: 1.4em;
    margin-bottom: -24px;
}
.heading-4 {
    font-weight: bold;
    font-size: 1.05em;
    padding-left: 30px;
}
.standalone-constant {
    background-color: var(--color-background-constants);
    display: inline-block;
    padding: 3px;
}
.standalone-property {
    color: var(--color-property);
    display: inline-block;
    padding: 3px;
    background-color: var(--color-background-properties);
}
.standalone-class-link {
    font-weight: bold;
    font-size: 1.4em;
}
.constant-div, .method-div, .property-div, .class-div, .argument-div {
    margin-left: 50px;
}
.argument-div {
    margin-bottom: 4px;
    background-color: var(--color-background-methods);
    padding: 3px; 
    border: 1px solid;
    border-color: var(--color-border-methods);
}
.new-signature{
    font-size: 1.05em;
}

/* TV */
.tv img {
    width: 600px;
    height: auto;
}
.tv {
    margin-bottom: 0;
    margin-top: 5px;
    text-align: center;
}
.tv > div {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

/* DIFF */
.added-line {
    color: var(--color-added-line);
    background-color: var(--color-background-added-line);
}
.removed-line {
    color: var(--color-removed-line);
    background-color: var(--color-background-removed-line);
}

/* MOHO VERSIONS */
.moho-versions-table {
    background-color: var(--color-background-moho-versions-table);
    color: var(--color-moho-versions-table);
    border-color: var(--color-border-moho-versions-table);
}
.moho-versions-table td {
    border-color: var(--color-border-moho-versions-table);
}
.moho-versions-table tbody tr:nth-child(odd){
    background-color: var(--color-background-moho-versions-table-odd);
    color: var(--color-moho-versions-table-odd);
}
.moho-versions-table tbody tr:hover {
    background-color: var(--color-background-moho-versions-table-hover);
    color: var(--color-moho-versions-table-hover);
}
.moho-versions-table thead tr,
.moho-versions-table thead tr:hover {
    background-color: var(--color-background-moho-versions-table-thead);
    color: var(--color-moho-versions-table-thead);
}

/* HELP */

.help-index {
    text-align: center;
}

.scripting-conventions h2 {
    margin-top: 2em;
}
.scripting-conventions .tldr {
    margin-top: 2em;
}
.scripting-conventions p {
    padding-left: 2em;
}
.scripting-conventions .do strong,
.scripting-conventions .dont strong {
    margin-bottom: 0;
    font-size: 1.2em;
}
.scripting-conventions ul {
    padding-left: 4em;
}
.scripting-conventions .do ul,
.scripting-conventions .dont ul {
    margin-top: 2px;
    list-style: none;
}
.scripting-conventions .do ul li,
.scripting-conventions .dont ul li {
    position: relative;
    padding-left: 1.5em;
}
.scripting-conventions .do ul li::before,
.scripting-conventions .dont ul li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}
.scripting-conventions .do ul li::before {
    content: "✔"
}
.scripting-conventions .dont ul li::before {
    content: "✖"
}
.scripting-conventions .do pre,
.scripting-conventions .dont pre {
    padding-left: 4em;
}
.scripting-conventions .do,
.scripting-conventions .dont {
    border: 1px solid;
    border-radius: 10px;
    margin-bottom: 5px;
    padding-top: 1em;
}
.scripting-conventions .do {
    background-color: var(--do-background-color);
    border-color: var(--do-border-color);
    color: var(--do-color);
}
.scripting-conventions .dont {
    background-color: var(--dont-background-color);
    border-color: var(--dont-border-color);
    color: var(--dont-color);
}
.scripting-conventions pre {
    border: none;
}
.back-to-help-div {
    margin-top: 3em;
    margin-bottom: 3em;
}
.back-to-help-button {
    color: var(--primary-color) !important;
}


/* Pagination */
.pagination-controls-div { margin-bottom: 6px; }
.pagination-page { 
    color: var(--color-link); 
}
.pagination-page-number { 
    margin-right: 3px;
    font-weight: bold;
    color: var(--color-link);
    position: relative;
    top: 2px;
}
.pagination-current-page-wrapper { 
    background-color: var(--color-link); 
    border-radius: 25%; display: inline-block;
    width: 24px;
    height: 30px;
    text-align: center;
    vertical-align: middle; 
}
.pagination-current-page { 
    font-weight: bold; 
    color: var(--color-background-main);
    font-size: 1.2em;
    margin: auto;
    position: relative;
    top: 4px;
}
.view-script-holder {
    text-align: right;
}
.view-script-holder a {
    font-weight: bold;
    font-size: .9em;
    text-decoration: none;
}

.history-record {
    margin-bottom: 1em;
}
.history-id {
    font-size: .78em;
}

/* Responsive Design */
.main-content.with-tv {
    margin-top: -64px;
}
.main-content-no-menu.with-tv {
    margin-top: -84px;
}
@media (max-width: 1800px){
    .main-content.with-tv {
        margin-top: 0;
    }
    .main-content-no-menu.with-tv {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .top-menu {
        display: block;
    }
    
    .side-nav {
        position: fixed;
        /* Fix the position */
        top: 0;
        left: -250px;
        /* Initially hidden (off-screen) */
        width: 250px;
        /* Fixed width for the menu */
        height: 100%;
        /* Full height */
        background-color: #f4f4f4;
        z-index: 1000;
        /* Ensure it appears above other content */
        transition: left 0.3s ease;
        /* Smooth transition for toggle */
        overflow-y: auto;
        /* Allow scrolling if content exceeds height */
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
        /* Optional shadow effect */
    }

    .side-nav.active {
        left: 0;
        /* Slide in when active */
    }

    .main-container {
        grid-template-columns: 1fr;
        /* Single column layout for content */
        grid-template-rows: auto auto 1fr;
        grid-template-areas:
            "top-menu"
            "main-content";
    }

    .main-section {
        width: auto;
    }

    .main-content {
        display: block;
    }

    /* Show menu button on mobile */
    .menu-toggle {
        display: block !important;
        width: auto;
        position: absolute;
        top: 0;
        right: 0;
    }
}