/* src/styles.less */
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}
body {
  margin: 0px !important;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem;
}
.app-main {
  width: 100%;
  overflow-x: hidden;
}
.header {
  background: transparent;
  position: relative;
  z-index: 100;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  gap: 2rem;
}
.logo {
  height: 100px;
  width: auto;
  cursor: pointer;
}
.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav a {
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.nav a:hover {
  color: #23aaf7;
}
.footer-section {
  margin-top: 4rem;
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      rgba(35, 170, 247, 0.08) 30%,
      rgba(35, 170, 247, 0.15) 70%,
      #ffffff 100%);
  color: #334155;
  padding: 4rem 0 1.5rem;
  position: relative;
  width: 100%;
  box-shadow: 0 -4px 20px rgba(35, 170, 247, 0.08);
  border-top: 2px solid rgba(35, 170, 247, 0.12);
}
.footer-section::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(35, 170, 247, 0.3) 20%,
      rgba(35, 170, 247, 0.5) 50%,
      rgba(35, 170, 247, 0.3) 80%,
      transparent 100%);
}
.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
}
.footer-col h4 {
  color: #23aaf7;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background:
    linear-gradient(
      90deg,
      #23aaf7,
      rgba(35, 170, 247, 0.3));
  border-radius: 2px;
}
.footer-logo-img {
  height: 70px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 2px 8px rgba(35, 170, 247, 0.2));
}
.footer-desc {
  color: #475569;
  line-height: 1.7;
  font-size: 0.98rem;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 0.85rem;
}
.footer-col ul li a {
  color: #64748b;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
  font-weight: 500;
}
.footer-col ul li a::before {
  content: "\203a";
  position: absolute;
  left: -15px;
  color: #23aaf7;
  opacity: 0;
  transition: all 0.3s ease;
  font-weight: bold;
}
.footer-col ul li a:hover {
  color: #23aaf7;
  padding-left: 15px;
}
.footer-col ul li a:hover::before {
  opacity: 1;
  left: 0;
}
.footer-contact li {
  color: #475569;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.footer-bottom {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding: 1.75rem 2rem 0;
  border-top: 1px solid rgba(35, 170, 247, 0.15);
  text-align: center;
}
.footer-bottom p {
  color: #64748b;
  margin: 0;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
}
.auth-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.auth-buttons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.btn-login,
.btn-register {
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-block;
}
.btn-login {
  background: transparent;
  color: #23aaf7;
  border: 2px solid #23aaf7;
}
.btn-login:hover {
  background: rgba(35, 170, 247, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(35, 170, 247, 0.2);
}
.btn-register {
  background: #23aaf7;
  color: white;
  border: 2px solid #23aaf7;
}
.btn-register:hover {
  background: #1996dc;
  border-color: #1996dc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(35, 170, 247, 0.3);
}
.user-dropdown {
  position: relative;
}
.user-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
}
.user-info:hover {
  background: rgba(35, 170, 247, 0.05);
}
.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #23aaf7;
  background: rgba(35, 170, 247, 0.1);
}
.user-name {
  font-weight: 600;
  color: #000000;
  font-size: 0.95rem;
}
.dropdown-icon {
  color: #64748b;
  font-size: 0.75rem;
  transition: transform 0.3s;
}
.user-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(35, 170, 247, 0.1);
}
.user-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  color: #334155;
  text-decoration: none;
  transition: all 0.2s;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
}
.dropdown-item:first-child {
  border-radius: 12px 12px 0 0;
}
.dropdown-item:last-child {
  border-radius: 0 0 12px 12px;
}
.dropdown-item:hover {
  background: rgba(35, 170, 247, 0.08);
  color: #23aaf7;
  padding-left: 1.5rem;
}
.dropdown-item .icon {
  font-size: 20px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .auth-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
  .btn-login,
  .btn-register {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  .user-name {
    display: none;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.5rem;
  }
  .footer-logo-img {
    height: 55px;
  }
  .footer-section {
    padding: 3rem 0 1.5rem;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
