<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

#theme-toggle {
    width: 40px;
    height: 40px;
    text-align: center;
    margin: -5px 0 0 0;
    cursor: pointer;
    background-color: #4CAF50; /* Light theme button color */
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 25px;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

    /* Button hover effect */
    #theme-toggle:hover {
        background-color: #45a049;
        transform: scale(1.05);
    }

/* Button style for dark theme */
html[data-theme="dark"] #theme-toggle {
    background-color: #058933; /* Dark theme button color */
}

    /* Dark theme button hover effect */
    html[data-theme="dark"] #theme-toggle:hover {
        background-color: #058935;
    }</pre></body></html>