:root {
  --sidebar-width: 400px;
  /* Adjust the width as needed */ }

:root {
  --sidebar-width: 400px;
  /* Adjust the width as needed */ }

button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background-color: #ffffff;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease; }

button:hover {
  background-color: #dddddd; }

/* Adjustments for non-mobile views can be placed within a media query */
.moving-gradient-button {
  background-size: 200% 200%;
  background-image: linear-gradient(45deg, #2d4238, #26b1a4, #5e7f71);
  animation: gradient-background 3s ease infinite; }

.moving-gradient-button:hover {
  background-color: #dddddd; }

.moving-gradient-link {
  width: auto;
  padding: 10px;
  border: none;
  display: block;
  border-radius: 10px;
  background-color: #ffffff;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  background-size: 200% 200%;
  background-image: linear-gradient(45deg, #0c9505, #26b1a4, #1076ca);
  animation: gradient-background 3s ease infinite;
  transition: background-color 0.3s ease; }

.moving-gradient-link:hover {
  background-color: #dddddd; }

:root {
  --sidebar-width: 400px;
  /* Adjust the width as needed */ }

.header {
  display: flex;
  justify-content: space-between;
  background-color: #ffffff;
  align-items: center;
  padding: 0 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 100; }
  @media screen and (max-width: 999px) {
    .header {
      position: relative; } }
.logo {
  display: flex;
  align-items: center; }

.logo-name {
  background: -webkit-linear-gradient(#2d4238, #26b1a4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 24px;
  font-family: 'Roboto';
  text-decoration: none;
  display: block; }

.logo-img {
  height: 50px;
  /* Adjust as necessary */
  margin-right: 10px; }

.header-right a {
  color: #505a64;
  text-decoration: none;
  margin-left: 20px;
  font-size: 16px; }

@media screen and (max-width: 999px) {
  .header-right-mobile-link {
    display: none; } }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  overflow-x: hidden;
  margin: 0;
  padding: 0; }

body {
  display: block;
  margin: 0;
  padding: 0;
  padding-bottom: 100px;
  background-color: #ffffff;
  color: #2E2E2E;
  text-align: left;
  font-family: -apple-system,"system-ui","Segoe UI",sans-serif;
  overflow-x: hidden; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; }

/* Styles the scrollbar track for all elements */
*::-webkit-scrollbar-track {
  background-color: #333333; }

/* Styles the scrollbar handle for all elements */
*::-webkit-scrollbar-thumb {
  background-color: #666666;
  border-radius: 10px; }

/* Styles the scrollbar width and height for all elements */
*::-webkit-scrollbar {
  width: 10px;
  height: 10px; }

@keyframes gradient-background {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }

.disclaimer {
  color: #252525;
  font-size: 10px; }
  .disclaimer a {
    color: #252525; }

.disclaimer-black {
  color: #aaaaaa;
  font-size: 10px; }
  .disclaimer-black a {
    color: #aaaaaa; }

@media (max-width: 999px) {
  .mobile-hidden {
    display: none; } }

.hidden {
  display: none; }

.btn-google {
  background-color: #4285F4;
  color: white;
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 4px; }

.btn-google:hover {
  background-color: #357ae8; }
