/* [project]/src/app/dashboard/Dashboard.module.css [app-client] (css) */
.Dashboard-module__8Mmpzq__dashboard-container {
  color: #282828;
  backdrop-filter: blur(10px);
  background: #e9e4e480;
  border-radius: 15px;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 300px auto;
  padding: 40px;
  display: flex;
  box-shadow: 0 4px 10px #fffc;
}

.Dashboard-module__8Mmpzq__dashboard-left {
  width: 60%;
  padding-right: 20px;
}

.Dashboard-module__8Mmpzq__dashboard-right {
  color: #ddd;
  background: #c6c0c099;
  border-radius: 10px;
  width: 35%;
  padding: 20px;
  box-shadow: 0 4px 15px #0009;
}

.Dashboard-module__8Mmpzq__dashboard-left .Dashboard-module__8Mmpzq__user-name {
  color: #000;
  margin: 10px 0;
  font-size: 1.4rem;
}

.Dashboard-module__8Mmpzq__dashboard-left button {
  color: #fff;
  cursor: pointer;
  background-color: #07485a;
  border: none;
  border-radius: 5px;
  margin: 10px 0;
  padding: 12px 20px;
  font-size: 1.1rem;
  transition: background-color .3s;
}

.Dashboard-module__8Mmpzq__dashboard-left button:hover {
  background-color: #091b49;
}

.Dashboard-module__8Mmpzq__dashboard-left .Dashboard-module__8Mmpzq__download-btn {
  background-color: #28a745;
}

.Dashboard-module__8Mmpzq__dashboard-left .Dashboard-module__8Mmpzq__download-btn:hover {
  background-color: #218838;
}

.Dashboard-module__8Mmpzq__dashboard-left .Dashboard-module__8Mmpzq__subscribe-btn {
  background-color: #0d2961;
}

.Dashboard-module__8Mmpzq__dashboard-left .Dashboard-module__8Mmpzq__subscribe-btn:hover {
  background-color: #4d063380;
}

.Dashboard-module__8Mmpzq__dashboard-right h2 {
  color: #050504;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.Dashboard-module__8Mmpzq__dashboard-right ul {
  padding: 0;
  list-style-type: none;
}

.Dashboard-module__8Mmpzq__dashboard-right li {
  margin: 10px 0;
}

.Dashboard-module__8Mmpzq__dashboard-right a {
  color: #4d063380;
  font-size: 1.1rem;
  text-decoration: none;
}

.Dashboard-module__8Mmpzq__dashboard-right a:hover {
  text-decoration: underline;
}

.Dashboard-module__8Mmpzq__error {
  color: red;
  margin-top: 20px;
  font-size: 1rem;
}

.Dashboard-module__8Mmpzq__loading {
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}

@media (width <= 600px) {
  .Dashboard-module__8Mmpzq__dashboard-container {
    flex-direction: column;
  }

  .Dashboard-module__8Mmpzq__dashboard-left, .Dashboard-module__8Mmpzq__dashboard-right {
    width: 100%;
    padding: 20px;
  }

  .Dashboard-module__8Mmpzq__dashboard-left button, .Dashboard-module__8Mmpzq__dashboard-left .Dashboard-module__8Mmpzq__download-btn, .Dashboard-module__8Mmpzq__dashboard-left .Dashboard-module__8Mmpzq__subscribe-btn {
    width: 100%;
  }
}


/* [project]/src/app/components/navbar.css [app-client] (css) */
.navbar {
  z-index: 1000;
  background: linear-gradient(135deg, #dfdae5, #9094b0);
  justify-content: space-between;
  width: 100%;
  padding: 10px 20px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.menu-toggle {
  cursor: pointer;
  z-index: 1100;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: none;
  position: relative;
}

.menu-toggle span {
  background: #1e1e1e;
  border-radius: 2px;
  width: 28px;
  height: 4px;
  transition: all .3s cubic-bezier(.4, 2, .6, 1);
  display: block;
  position: relative;
}

.menu-toggle span:before, .menu-toggle span:after {
  content: "";
  background: #222;
  border-radius: 2px;
  width: 28px;
  height: 4px;
  transition: all .3s cubic-bezier(.4, 2, .6, 1);
  display: block;
  position: absolute;
  left: 0;
}

.menu-toggle span:before {
  top: -9px;
}

.menu-toggle span:after {
  top: 9px;
}

.menu-toggle.open span {
  background: none;
}

.menu-toggle.open span:before {
  top: 0;
  transform: rotate(45deg)translate(5px, 5px);
}

.menu-toggle.open span:after {
  top: 0;
  transform: rotate(-45deg)translate(5px, -5px);
}

.nav-links {
  color: #fff;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  color: #000000e6;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
}

.nav-links a:hover {
  color: #ffffff80;
}

button {
  color: #fff;
  cursor: pointer;
  background-color: red;
  border: none;
  padding: 8px 15px;
}

@media (width <= 768px) {
  .nav-links {
    backdrop-filter: blur(2px);
    background-color: #4446504d;
    flex-direction: column;
    width: 100%;
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    box-shadow: 0 4px 20px #000c;
  }

  .nav-links li:hover {
    color: #23318e80;
  }

  .nav-links li {
    text-align: center;
    margin: 20px 0;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    top: 10px;
    right: 20px;
  }

  .nav-links.active {
    display: flex;
  }
}


/* [project]/src/app/components/foo.css [app-client] (css) */
.footer {
  color: #fff;
  text-align: center;
  z-index: 1000;
  background-color: #333;
  width: 100%;
  padding: 20px 0;
  position: relative;
  bottom: 0;
  left: 0;
}

.footer-content {
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
  display: flex;
}

.footer-left, .footer-center, .footer-right {
  flex: 1;
}

.footer-left {
  text-align: left;
}

.footer-center {
  text-align: center;
}

.footer-right {
  text-align: right;
}

.footer p {
  margin: 10px 0;
  font-size: 1rem;
}

.social-links {
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
  display: flex;
}

.social-links a {
  text-decoration: none;
}

.social-links img {
  width: 30px;
  height: 30px;
  transition: transform .3s;
}

.social-links img:hover {
  transform: scale(1.2);
}

.footer-right ul {
  padding: 0;
  list-style: none;
}

.footer-right li {
  margin-bottom: 10px;
}

.footer-right a {
  color: #fff;
  text-decoration: none;
}

.footer-right a:hover {
  color: #4d063380;
}

.facebook {
  filter: invert(28%) sepia(91%) saturate(746%) hue-rotate(190deg) brightness(98%) contrast(91%);
  width: 24px;
  height: 24px;
}

.reddit {
  filter: invert(46%) sepia() saturate(3700%) hue-rotate(2deg) brightness() contrast(102%);
  width: 24px;
  height: 24px;
}

.discord {
  filter: invert(40%) sepia(79%) saturate(528%) hue-rotate(211deg) brightness(94%) contrast(98%);
  width: 24px;
  height: 24px;
}

@media (width <= 600px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-left, .footer-center, .footer-right {
    text-align: center;
    margin-bottom: 10px;
  }

  .footer p {
    font-size: .9rem;
  }

  .social-links {
    gap: 15px;
  }

  .footer-right ul {
    padding-left: 0;
  }
}


/*# sourceMappingURL=src_app_2fd406df._.css.map*/