.coin-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  color: #fff;
  background: #251749;
}
.revamped-coin-table th, .revamped-coin-table td {
  padding: 1.1rem 1.3rem;
  font-size: 1.08rem;
  color: #fff;
}
.revamped-coin-table th {
  background: #18122B;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  border-bottom: 2px solid #2d1c4a;
}
/* Vertical Layout: Top Navigation Bar */
.topnav-vertical {
  width: 100vw;
  background: #251749;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 0.7rem 2rem;
  box-shadow: 0 2px 16px 0 #00000022;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}
.topnav-logo-block {
  display: flex;
  align-items: center;
  margin-right: 2.5rem;
}
.topnav-logo {
  width: 48px;
  height: auto;
  border-radius: 8px;
  margin-right: 1rem;
}
.topnav-label {
  color: #bdbdbd;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.topnav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.topnav-links li {
  margin-right: 1.5rem;
}
.topnav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background 0.2s;
}
.topnav-links a.active, .topnav-links a:hover {
  background: #ff3cac;
  color: #fff;
}
.topnav-links i {
  margin-right: 0.7rem;
}
.topnav-section-header {
  color: #bdbdbd;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-right: 1.5rem;
}

/* Main Content Vertical */
.main-content-vertical {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #18122B;
  min-height: 60vh;
  padding-bottom: 2rem;
}
.main-content-vertical .coin-market-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-content-vertical .revamped-table-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 0 2.5rem 0;
}
@media (max-width: 900px) {
  .topnav-vertical {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.7rem 0.5rem;
  }
  .topnav-links {
    flex-direction: column;
    align-items: flex-start;
  }
  .topnav-links li {
    margin: 0.3rem 0;
  }
  .main-content-vertical .revamped-table-container {
    max-width: 100vw;
    margin: 0 0 1.5rem 0;
  }
}
.revamped-table-container {
  background: #251749;
  border-radius: 18px;
  margin: 0 2rem 2.5rem 2rem;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  box-shadow: 0 8px 32px 0 #00000033, 0 1.5px 8px 0 #ff3cac22;
  border: none;
  min-width: 0;
  width: 100%;
  overflow-x: auto;
}
.coin-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}
@media (max-width: 900px) {
  .revamped-table-container {
    margin: 0 0.5rem 1.5rem 0.5rem;
    padding: 1rem 0.2rem;
    min-width: 0;
    width: 100%;
    overflow-x: auto;
  }
  .coin-table {
    min-width: 480px;
    font-size: 0.95rem;
  }
}
@media (max-width: 600px) {
  .revamped-table-container {
    margin: 0 0.1rem 1rem 0.1rem;
    padding: 0.5rem 0.1rem;
  }
  .coin-table {
    min-width: 360px;
    font-size: 0.9rem;
  }
}
/* Main flex container for sidebar and content below banner */
.main-flex-dark {
  display: flex;
  flex-direction: row;
  width: 100vw;
  min-height: 80vh;
  background: #18122B;
  box-shadow: 0 2px 32px 0 #00000033;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .main-flex-dark {
    flex-direction: column;
    min-height: unset;
  }
}
/* Screenshot-accurate Hero Banner */
.hero-banner-screenshot {
  width: 100vw;
  min-height: 240px;
  background: linear-gradient(90deg, #251749 60%, #18122B 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 6px 32px 0 #00000033;
  border-radius: 0 0 24px 24px;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
  padding: 0;
  z-index: 10;
}
.hero-banner-bg-screenshot {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('/images/banner-bg.png'), linear-gradient(90deg, #251749 60%, #18122B 100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  border-radius: 0 0 24px 24px;
  opacity: 0.9;
  z-index: 1;
}
.hero-banner-content-screenshot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 1600px;
  padding: 2.5rem 2rem 2.5rem 2.5rem;
}
.hero-logo-screenshot {
  width: 180px;
  height: auto;
  margin-right: 2.5rem;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 #00000022;
  background: #fff1;
}
.hero-text-screenshot {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.hero-text-screenshot h1 {
  font-size: 2.6rem;
  color: #ff3cac;
  margin-bottom: 0.2rem;
  letter-spacing: 2px;
}
.hero-subtitle-screenshot {
  color: #bdbdbd;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  display: block;
}
.hero-market-screenshot {
  color: #fff;
  font-size: 1.3rem;
  margin-top: 1.2rem;
  font-weight: 500;
}
.login-dropdown-screenshot {
  position: absolute;
  top: 2.5rem;
  right: 3.5rem;
  z-index: 3;
}
.login-btn {
  background: #251749;
  color: #fff;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.login-btn:hover {
  background: #ff3cac;
}
@media (max-width: 900px) {
  .hero-banner-content-screenshot {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 0.7rem;
  }
  .hero-logo-screenshot {
    margin: 0 0 1rem 0;
    width: 120px;
  }
  .hero-text-screenshot h1 {
    font-size: 2rem;
  }
  .login-dropdown-screenshot {
    position: static;
    margin-top: 1rem;
    right: unset;
    top: unset;
  }
}
@media (max-width: 600px) {
  .hero-banner-content-screenshot {
    padding: 0.7rem 0.2rem;
  }
  .hero-logo-screenshot {
    width: 70px;
  }
  .hero-text-screenshot h1 {
    font-size: 1.3rem;
  }
  .hero-subtitle-screenshot, .hero-market-screenshot {
    font-size: 1rem;
  }
}
.revamped-table-container {
  background: #251749;
  border-radius: 18px;
  margin: 0 0 2.5rem 0;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  box-shadow: 0 8px 32px 0 #00000033, 0 1.5px 8px 0 #ff3cac22;
  border: 1.5px solid #2d1c4a;
  min-width: 320px;
}
.revamped-coin-table {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px 0 #00000011;
  background: #20143a;
}
.revamped-coin-table th, .revamped-coin-table td {
  padding: 1.1rem 1.3rem;
  font-size: 1.08rem;
}
.revamped-coin-table th {
  background: #18122B;
  color: #bdbdbd;
  font-weight: 700;
  letter-spacing: 1px;
  border-bottom: 2px solid #2d1c4a;
}
.revamped-coin-table tr:nth-child(even) {
  background: #251749;
}
.revamped-coin-table tr:hover {
  background: #ff3cac33;
}
.revamped-coin-table td {
  border-bottom: 1px solid #2d1c4a;
}
/* Reverse Layout Adjustments for Screenshot Match */
.dashboard-reverse {
  flex-direction: row;
}
.main-content-reverse {
  margin-top: 2.5rem;
  width: 100%;
  max-width: 1400px;
  margin-left: 0;
  margin-right: 2.5rem;
}
.hero-banner-reverse {
  width: 100%;
  max-width: 100%;
  margin: 0 0 2.5rem 0;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 #00000033;
  background: none;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.hero-banner-content-reverse {
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero-banner-logo-v2 {
  width: 180px;
  margin-left: 2rem;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 #00000022;
  background: #fff1;
}
.revamped-table-container {
  margin: 0 0 2.5rem 0;
}
.sidebar-v2 {
  margin-right: 2.5rem;
  margin-left: 1.2rem;
}
@media (max-width: 1100px) {
  .main-content-reverse {
    margin-right: 1rem;
  }
  .sidebar-v2 {
    margin-right: 1rem;
  }
}
@media (max-width: 900px) {
  .dashboard-reverse {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
    flex-direction: column;
  }
  .main-content-reverse {
    margin-right: 0;
    margin-left: 0;
  }
  .sidebar-v2 {
    margin-right: 0;
    margin-left: 0;
.dashboard-root {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
  background: #18122B;
  color: #fff;
  font-family: 'Segoe UI', Arial, sans-serif;
  border: none;
  box-shadow: none;
}
}
/* --- V2 Dashboard Layout for Reference UI --- */
.dashboard-root {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
  background: #18122B;
  background: none;
  border-radius: 0;
  box-shadow: none;
  color: #fff;
  font-family: 'Segoe UI', Arial, sans-serif;
}

/* Sidebar V2 */
.sidebar-v2 {
  width: 250px;
  background: #251749;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem 1rem 1rem 1.5rem;
  min-height: 100vh;
  border: none;
  border-radius: 24px 0 24px 0;
  box-shadow: 4px 0 24px 0 #00000022;
  margin: 2.5rem 0 2.5rem 1.2rem;
}
.sidebar-logo-block {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1.5rem;
}
.sidebar-logo-v2 {
  width: 60px;
  height: auto;
  border-radius: 12px;
  background: #fff1;
  box-shadow: 0 2px 8px 0 #00000022;
}
.sidebar-label {
  color: #bdbdbd;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
}
  border: none;
.sidebar-nav-v2 ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem 0;
}
.sidebar-nav-v2 a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background 0.2s;
  margin-bottom: 0.3rem;
}
.sidebar-nav-v2 a.active, .sidebar-nav-v2 a:hover {
  background: #ff3cac;
  color: #fff;
}
.sidebar-nav-v2 i {
  margin-right: 0.7rem;
}
.sidebar-section-header {
  color: #bdbdbd;
  font-size: 0.95rem;
  margin: 1.2rem 0 0.2rem 0.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Hero Banner V2 */
.main-content-v2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin-top: 2.5rem;
}
.hero-banner-v2 {
  width: 100%;
  min-height: 220px;
  background: none;
  position: relative;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.hero-banner-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('/images/banner-bg.png'), linear-gradient(90deg, #251749 60%, #18122B 100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  border-radius: 24px;
  opacity: 0.9;
  z-index: 1;
}
.hero-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 2.5rem 2.5rem 2.5rem 3rem;
  width: 100%;
}
.hero-banner-title-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-banner-title {
  font-size: 2.6rem;
  color: #ff3cac;
  margin-bottom: 0.2rem;
  letter-spacing: 2px;
}
.hero-banner-subtitle {
  color: #bdbdbd;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  display: block;
}
.hero-banner-market {
  color: #fff;
  font-size: 1.3rem;
  margin-top: 1.2rem;
  font-weight: 500;
}
.hero-banner-logo-v2 {
  width: 180px;
  opacity: 0.95;
  margin-left: 2rem;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 #00000022;
  background: #fff1;
}

/* Table Section V2 */
.revamped-table-container {
  background: #251749;
  border-radius: 18px;
  margin: 0 2.5rem 2.5rem 2.5rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 24px 0 #00000022;
}
.revamped-coin-table {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px 0 #00000011;
}
.revamped-coin-table th, .revamped-coin-table td {
  padding: 1rem 1.2rem;
  font-size: 1.08rem;
}
.revamped-coin-table th {
  background: #18122B;
  color: #bdbdbd;
  font-weight: 700;
  letter-spacing: 1px;
}
.revamped-coin-table tr:nth-child(even) {
  background: #20143a;
}
.revamped-coin-table tr:hover {
  background: #ff3cac33;
}
.revamped-coin-table td {
  border-bottom: 1px solid #2d1c4a;
}

/* Responsive for V2 */
@media (max-width: 1100px) {
  .hero-banner-content, .revamped-table-container {
    margin: 0 1rem 1.5rem 1rem;
    padding: 1.2rem 0.7rem;
  }
  .sidebar-v2 {
    margin: 1.5rem 0 1.5rem 0.5rem;
  }
}
@media (max-width: 900px) {
  .dashboard-root {
    flex-direction: column;
  }
  .sidebar-v2 {
    flex-direction: row;
    width: 100%;
    min-height: unset;
    padding: 1rem 0.5rem;
    justify-content: space-between;
    border-radius: 0 0 24px 24px;
    margin: 0 0 1.2rem 0;
    max-width: unset;
    box-shadow: none;
  }
  .main-content-v2 {
    margin-top: 1rem;
  }
  .hero-banner-content, .revamped-table-container {
    margin: 1rem;
    padding: 1rem;
  }
  .hero-banner-logo-v2 {
    width: 90px;
  }
}
@media (max-width: 700px) {
  .hero-banner-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.7rem 0.2rem;
  }
  .hero-banner-logo-v2 {
    margin: 1rem 0 0 0;
    width: 70px;
  }
  .hero-banner-title {
    font-size: 1.5rem;
  }
  .hero-banner-subtitle, .hero-banner-market {
    font-size: 1rem;
  }
  .sidebar-v2 {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0.5rem;
  }
  .sidebar-label {
    font-size: 0.9rem;
  }
  .sidebar-nav-v2 a {
    font-size: 1rem;
    padding: 0.5rem 0.7rem;
  }
}
@media (max-width: 500px) {
  .hero-banner-v2 {
    min-height: 80px;
    border-radius: 0 0 12px 12px;
  }
  .hero-banner-logo-v2 {
    width: 50px;
  }
  .hero-banner-title {
    font-size: 1rem;
  }
  .main-content-v2, .sidebar-v2 {
    margin: 0;
    padding: 0.2rem;
  }
  .revamped-table-container {
    padding: 0.2rem;
    margin: 0.2rem;
  }
}
/* Enhanced Responsive Design */
@media (max-width: 900px) {
  .dashboard-container {
    flex-direction: column;
    min-height: unset;
  }
  .sidebar {
    flex-direction: row;
    width: 100%;
    min-height: unset;
    padding: 1rem 0.5rem;
    justify-content: space-between;
    border-radius: 0 0 24px 24px;
    margin: 0 0 1.2rem 0;
    max-width: unset;
    box-shadow: none;
  }
  .sidebar-header, .sidebar-nav {
    display: inline-block;
    vertical-align: middle;
  }
  .main-content {
    margin-top: 1rem;
  }
  .revamped-banner, .revamped-table-container, .hero-banner {
    margin: 1rem 0.5rem;
    padding: 1rem;
  }
  .banner-logo-topright {
    top: 1rem;
    right: 1rem;
    width: 90px;
  }
}
@media (max-width: 700px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.7rem 0.2rem;
  }
  .hero-logo {
    margin: 0 0 1rem 0;
    width: 80px;
  }
  .hero-text h1 {
    font-size: 1.5rem;
  }
  .hero-subtitle, .hero-market {
    font-size: 1rem;
  }
  .sidebar {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0.5rem;
  }
  .sidebar-header h2 {
    font-size: 1.1rem;
  }
  .sidebar-subtitle {
    font-size: 0.9rem;
  }
  .sidebar-nav a {
    font-size: 1rem;
    padding: 0.5rem 0.7rem;
  }
}
@media (max-width: 500px) {
  .hero-banner {
    min-height: 80px;
    border-radius: 0 0 12px 12px;
  }
  .hero-logo {
    width: 50px;
  }
  .hero-text h1 {
    font-size: 1rem;
  }
  .main-content, .sidebar {
    margin: 0;
    padding: 0.2rem;
  }
  .revamped-table-container {
    padding: 0.2rem;
    margin: 0.2rem;
  }
}

/* Make table horizontally scrollable on mobile */
.table-container {
  overflow-x: auto;
}
/* Hero Banner Styles */
.hero-banner {
  width: 100vw;
  min-height: 220px;
  background: linear-gradient(90deg, #251749 60%, #18122B 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 32px 0 #00000033;
  border-radius: 0 0 32px 32px;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
  padding: 0;
  z-index: 10;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1400px;
  padding: 2.5rem 2rem 2.5rem 2rem;
}
.hero-logo {
  width: 220px;
  height: auto;
  margin-right: 2.5rem;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 #00000022;
  background: #fff1;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-text h1 {
  font-size: 2.8rem;
  color: #ff3cac;
  margin-bottom: 0.2rem;
  letter-spacing: 2px;
}
.hero-subtitle {
  color: #bdbdbd;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  display: block;
}
.hero-market {
  color: #fff;
  font-size: 1.4rem;
  margin-top: 1.2rem;
  font-weight: 500;
}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 0.7rem;
  }
  .hero-logo {
    margin: 0 0 1rem 0;
    width: 120px;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
}
@media (max-width: 600px) {
  .hero-content {
    padding: 0.7rem 0.2rem;
  }
  .hero-logo {
    width: 70px;
  }
  .hero-text h1 {
    font-size: 1.3rem;
  }
  .hero-subtitle, .hero-market {
    font-size: 1rem;
  }
}
.revamped-banner {
  background: linear-gradient(90deg, #251749 60%, #18122B 100%);
  border-radius: 24px;
  margin: 0 2.5rem 2.5rem 2.5rem;
  display: flex;
  align-items: flex-start;
  padding: 2.5rem 2.5rem 2.5rem 3rem;
  position: relative;
  min-height: 220px;
  box-shadow: 0 6px 32px 0 #00000033;
}
.banner-content h1 {
  font-size: 2.6rem;
  color: #ff3cac;
  margin-bottom: 0.2rem;
  letter-spacing: 2px;
}
.banner-subtitle {
  color: #bdbdbd;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  display: block;
}
.banner-market {
  color: #fff;
  font-size: 1.3rem;
  margin-top: 1.2rem;
  font-weight: 500;
}
.banner-logo-topright {
  position: absolute;
  top: 2.2rem;
  right: 2.5rem;
  width: 140px;
  height: auto;
  opacity: 1;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 #00000022;
  background: #fff1;
}

.revamped-table-container {
  background: #251749;
  border-radius: 18px;
  margin: 0 2.5rem 2.5rem 2.5rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 24px 0 #00000022;
}
.revamped-coin-table {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px 0 #00000011;
}
.revamped-coin-table th, .revamped-coin-table td {
  padding: 1rem 1.2rem;
  font-size: 1.08rem;
}
.revamped-coin-table th {
  background: #18122B;
  color: #bdbdbd;
  font-weight: 700;
  letter-spacing: 1px;
}
.revamped-coin-table tr:nth-child(even) {
  background: #20143a;
}
.revamped-coin-table tr:hover {
  background: #ff3cac33;
}
.revamped-coin-table td {
  border-bottom: 1px solid #2d1c4a;
}

/* Sidebar improvements */
.sidebar {
  border-radius: 0 24px 24px 0;
  box-shadow: 4px 0 24px 0 #00000022;
  margin: 2.5rem 0 2.5rem 1.2rem;
  min-width: 210px;
  max-width: 240px;
}
.sidebar-header h2 {
  font-size: 1.7rem;
  color: #ff3cac;
  margin: 0 0 0.2rem 0;
  letter-spacing: 2px;
}
.sidebar-subtitle {
  font-size: 1.05rem;
  color: #bdbdbd;
  margin-bottom: 1.5rem;
}
.sidebar-nav a {
  font-size: 1.13rem;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
}
.sidebar-nav a.active, .sidebar-nav a:hover {
  background: #ff3cac;
  color: #fff;
  box-shadow: 0 2px 8px 0 #ff3cac33;
}

/* Spacing for main content */
.main-content {
  margin-top: 2.5rem;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .revamped-banner, .revamped-table-container {
    margin: 0 1rem 1.5rem 1rem;
    padding: 1.2rem 0.7rem;
  }
  .sidebar {
    margin: 1.5rem 0 1.5rem 0.5rem;
  }
}
@media (max-width: 900px) {
  .dashboard-container {
    flex-direction: column;
  }
  .sidebar {
    flex-direction: row;
    width: 100%;
    min-height: unset;
    padding: 1rem 0.5rem;
    justify-content: space-between;
    border-radius: 0 0 24px 24px;
    margin: 0 0 1.2rem 0;
    max-width: unset;
  }
  .main-content {
    margin-top: 1rem;
  }
  .revamped-banner, .revamped-table-container {
    margin: 1rem;
    padding: 1rem;
  }
  .banner-logo-topright {
    top: 1rem;
    right: 1rem;
    width: 90px;
  }
}
@media (max-width: 600px) {
  .revamped-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    min-height: 120px;
  }
  .banner-logo-topright {
    position: static;
    margin: 1rem 0 0 0;
    width: 70px;
    border-radius: 10px;
  }
  .revamped-table-container {
    padding: 0.5rem;
  }
  .revamped-coin-table th, .revamped-coin-table td {
    padding: 0.5rem 0.3rem;
    font-size: 0.97rem;
  }
}
/* Dashboard Layout */
.dashboard-container {
  display: flex;
  min-height: 80vh;
  background: #18122B;
  color: #fff;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin-top: 0;
}

/* Sidebar */
.sidebar {
  width: 240px;
  background: #251749;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem 1rem 1rem;
  min-height: 100vh;
}
.sidebar-header {
  text-align: center;
  margin-bottom: 2rem;
}
.sidebar-logo {
  width: 60px;
  margin-bottom: 0.5rem;
}
.sidebar-header h2 {
  font-size: 1.5rem;
  color: #ff3cac;
  margin: 0;
  letter-spacing: 2px;
}
.sidebar-subtitle {
  font-size: 0.9rem;
  color: #bdbdbd;
}
.sidebar-nav ul {
  list-style: none;
  padding: 0;
  width: 100%;
}
.sidebar-nav li {
  margin: 1rem 0;
}
.sidebar-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background 0.2s;
}
.sidebar-nav a.active, .sidebar-nav a:hover {
  background: #ff3cac;
  color: #fff;
}
.sidebar-nav i {
  margin-right: 0.7rem;
}

/* Main Content */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* Top Bar */
.top-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem 2rem 0.5rem 2rem;
}
.login-dropdown {
  position: relative;
}
.login-btn {
  background: #251749;
  color: #fff;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.login-btn:hover {
  background: #ff3cac;
}

/* Banner/Header */
.banner {
  background: linear-gradient(90deg, #251749 60%, #18122B 100%);
  border-radius: 12px;
  margin: 0 2rem 2rem 2rem;
  display: flex;
  align-items: center;
  padding: 2rem 2rem 2rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.banner-content {
  flex: 1;
}
.banner-content h1 {
  font-size: 2.2rem;
  color: #ff3cac;
  margin-bottom: 0.5rem;
}
.banner-content h1 span {
  color: #fff;
  font-size: 1.1rem;
  margin-left: 0.5rem;
}
.banner-content p {
  color: #bdbdbd;
  font-size: 1.2rem;
}
.banner-logo {
  width: 180px;
  opacity: 0.8;
  margin-left: 2rem;
}

/* Coin Market Table */
.coin-market-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.table-container {
  background: #251749;
  border-radius: 12px;
  margin: 0 2rem 2rem 2rem;
  padding: 1.5rem 1rem;
  overflow-x: auto;
}
.coin-table {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
  font-size: 1rem;
}
.coin-table th, .coin-table td {
  padding: 0.75rem 1rem;
  text-align: left;
}
.coin-table th {
  background: #18122B;
  color: #bdbdbd;
  font-weight: 600;
}
.coin-table tr:nth-child(even) {
  background: #20143a;
}
.coin-table tr:hover {
  background: #ff3cac33;
}
.coin-table td {
  border-bottom: 1px solid #2d1c4a;
}

/* Responsive Design */
@media (max-width: 900px) {
  .dashboard-container {
    flex-direction: column;
  }
  .sidebar {
    flex-direction: row;
    width: 100%;
    min-height: unset;
    padding: 1rem 0.5rem;
    justify-content: space-between;
  }
  .sidebar-header, .sidebar-nav {
    display: inline-block;
    vertical-align: middle;
  }
  .main-content {
    margin-top: 1rem;
  }
  .banner, .table-container {
    margin: 1rem;
    padding: 1rem;
  }
}
@media (max-width: 600px) {
  .banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }
  .banner-logo {
    width: 120px;
    margin: 1rem 0 0 0;
  }
  .table-container {
    padding: 0.5rem;
  }
  .coin-table th, .coin-table td {
    padding: 0.5rem 0.3rem;
    font-size: 0.95rem;
  }
}
@media (hover: hover) {
  #creditcard {
    /*  set start position */
    transform: translateY(110px);
    transition: transform 0.1s ease-in-out;
    /*  set transition for mouse enter & exit */
  }

  #money {
    /*  set start position */
    transform: translateY(180px);
    transition: transform 0.1s ease-in-out;
    /*  set transition for mouse enter & exit */
  }

  button:hover #creditcard {
    transform: translateY(0px);
    transition: transform 0.2s ease-in-out;
    /*  overide transition for mouse enter */
  }

  button:hover #money {
    transform: translateY(0px);
    transition: transform 0.3s ease-in-out;
    /*  overide transition for mouse enter */
  }
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.25rem);
  }
  100% {
    transform: translateY(0);
  }
}

.button:hover .button__text span {
  transform: translateY(-0.25rem);
  transition: transform 0.2s ease-in-out;
}

/* styling */

@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400&display=swap");

.button {
  border: none;
  outline: none;
  background-color: purple;
  padding: 0.75rem 70px 0.75rem 1.6rem;
  width: 170px;
  margin-left: 25px;
  position: relative;
  border-radius: 8px;
  letter-spacing: 0.4px;
  background-color: transparent;
  color: #fff;
  font-size: 16px;
  font-family: "Lato", sans-serif;
  cursor: pointer;
  box-shadow: rgba(0, 9, 61, 0.2) 0px 4px 8px 0px;
}

.button:active {
  transform: translateY(1px);
}

.button__svg {
  position: absolute;
  overflow: visible;
  bottom: 6px;
  right: 1.1rem;
  height: 120%;
}
/* end of my-crypto button */

.table-hover tbody tr:hover td,
.table-hover tbody tr:hover th {
  background-image: linear-gradient(
    180deg,
    rgba(206, 25, 149, 0.3),
    rgb(10, 13, 48, 0.3)
  );
}
/* main card styling */
.coin-title-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* login styling */
.login-container {
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(7.5px);
  -webkit-backdrop-filter: blur(7.5px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  width: 400px;
  padding: 30px;
  margin: 20px;
}

/* logout styling */
.signup-container {
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(7.5px);
  -webkit-backdrop-filter: blur(7.5px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  width: 600px;
  padding: 30px;
  margin: 20px;
}

.converter-cointainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  margin-left: 200px;
}

.container {
  width: 240px;
  text-align: center;
  cursor: pointer;
  margin: 75px;
}

.container:first-child {
  width: 150px;
}

h1 {
  margin: 0;
  font-weight: 400;
}

h1:hover {
  color: rgb(232, 187, 74);
}

.list {
  list-style: none;
  width: 100px;
  padding: 0;
  margin: 5px auto 0 auto;
  border-radius: 5px;
  box-shadow: 0 5px 28px -10px rgba(20, 20, 20, 0.8);
  overflow: hidden;

  transition: 220ms ease-in-out;
}

.expand {
  max-height: 300px;
}

.li-list {
  padding: 5px 0;
  border-bottom: 1px solid rgb(222, 222, 222);
  transition: background 100ms;
}

.li-list:first-child {
  border-top: 4px solid rgb(232, 187, 74);
}

.li-list:last-child {
  border: none;
}

.li-list:hover {
  background-color: rgb(235, 235, 237);
}

.modal-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}


.panel{
  background: linear-gradient(to right, #141e59, #070618);
  padding: 0;
  border-radius: 10px;
  border: none;
  box-shadow: 0 0 0 5px rgba(0,0,0,0.05),0 0 0 10px rgba(0,0,0,0.05);
}
.panel .panel-heading{
  border-radius: 10px 10px 0 0;
  margin: 0;
}
.panel .panel-heading .title{
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 40px;
  margin: 0;
}
.panel .panel-heading .btn{
  color: rgba(255,255,255,0.5);
  background: transparent;
  font-size: 16px;
  text-transform: capitalize;
  border: 2px solid #fff;
  border-radius: 50px;
  transition: all 0.3s ease 0s;
}
.panel .panel-heading .btn:hover{
  color: #fff;
  text-shadow: 3px 3px rgba(255,255,255,0.2);
}
.panel .panel-heading .form-control{
  color: #fff;
  background-color: transparent;
  width: 35%;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 20px;
  display: inline-block;
  transition: all 0.3s ease 0s;
}
.panel .panel-heading .form-control:focus{
  background-color: rgba(255,255,255,0.2);
  box-shadow: none;
  outline: none;
}
.panel .panel-heading .form-control::placeholder{
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  font-weight: 500;
}
.panel .panel-body{ padding: 0; }
.panel .panel-body .table thead tr th{
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 12px;
  border: none;
}
.panel .panel-body .table tbody tr td{
  color: #fff;
  font-size: 15px;
  padding: 10px 12px;
  vertical-align: middle;
  border: none;
}
.panel .panel-body .table tbody tr:nth-child(even){ background-color: rgba(255,255,255,0.05); }
.panel .panel-body .table tbody .action-list{
  padding: 0;
  margin: 0;
  list-style: none;
}
.panel .panel-body .table tbody .action-list li{
  display: inline-block;
  margin: 0 5px;
}
.panel .panel-body .table tbody .action-list li a{
  color: #fff;
  font-size: 15px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease 0s;
}
.panel .panel-body .table tbody .action-list li a:hover{ text-shadow: 3px 3px 0 rgba(255,255,255,0.3); }
.panel .panel-body .table tbody .action-list li a:before,
.panel .panel-body .table tbody .action-list li a:after{
  content: attr(data-tip);
  color: #fff;
  background-color: #111;
  font-size: 12px;
  padding: 5px 7px;
  border-radius: 4px;
  text-transform: capitalize;
  display: none;
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
  top: -32px;
  transition: all 0.3s ease 0s;
}
.panel .panel-body .table tbody .action-list li a:after{
  content: '';
  height: 15px;
  width: 15px;
  padding: 0;
  border-radius: 0;
  transform: translateX(-50%) rotate(45deg);
  top: -18px;
  z-index: -1;
}
.panel .panel-body .table tbody .action-list li a:hover:before,
.panel .panel-body .table tbody .action-list li a:hover:after{
  display: block;
}
.panel .panel-footer{
  color: #fff;
  background-color: transparent;
  padding: 15px;
  border: none;
}
.panel .panel-footer .col{ line-height: 35px; }
.pagination{ margin: 0; }
.pagination li a{
  color: #fff;
  background-color: transparent;
  border: 2px solid transparent;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  line-height: 31px;
  width: 35px;
  height: 35px;
  padding: 0;
  margin: 0 3px;
  border-radius: 50px;
  transition: all 0.3s ease 0s;
}
.pagination li a:hover{
  color: #fff;
  background-color: transparent;
  border-color: rgba(255,255,255,0.2);
}
.pagination li a:focus,
.pagination li.active a,
.pagination li.active a:hover{
  color: #fff;
  background-color: transparent;
  border-color: #fff;
}
.pagination li:first-child a,
.pagination li:last-child a{
  border-radius: 50%;
}
@media only screen and (max-width:767px){
  .panel .panel-heading .title{
      text-align: center;
      margin: 0 0 10px;
  }
  .panel .panel-heading .btn_group{ text-align: center; }
}

.coin-title-box {
  display: flex;
  align-items: center;
  
  justify-content: flex-start;
  margin-left: 400px;
  padding: 30px;
}

.login-message {
  color: white;
  display: flex;
  align-items: center;
  font-size: 15px;
  margin-left: 18px;
}
