:root {
    --primary: #9B5A10;
    --secondary: #2E2217;
    --accent: #FFD629;
    --dark: #212529;
    --pastel-light: #F8F9FA;
    --pastel-medium: #E9ECEF;
    --gradient-light: linear-gradient(135deg, var(--pastel-light) 0%, var(--pastel-medium) 100%);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--gradient-light);
    color: var(--secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    color: var(--primary);
}

/* Header Styles */
.dashboard-header {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.logo img {
    max-height: 40px;
    width: auto;
}

.hamburger-btn, .header-btn {
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 1.2rem;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.hamburger-btn:hover, .header-btn:hover {
    background: rgba(155, 90, 16, 0.1);
}

.user-avatar-btn {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    font-weight: 500;
    color: var(--secondary);
}

.notification-btn {
    position: relative;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: var(--secondary);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dropdown Styles */
.user-dropdown, .notification-dropdown {
    position: relative;
}

.user-dropdown-content, .notification-dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    box-shadow: var(--shadow);
    width: 220px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
}

.user-dropdown:hover .user-dropdown-content,
.notification-dropdown:hover .notification-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(155, 90, 16, 0.1);
    color: var(--primary);
}

.dropdown-divider {
    height: 1px;
    background: var(--glass-border);
    margin: 5px 0;
}

.notification-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 15px;
    border-bottom: 1px solid var(--glass-border);
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-icon {
    background: rgba(155, 90, 16, 0.1);
    color: var(--primary);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-content p {
    margin: 0;
    font-size: 0.9rem;
}

.notification-content span {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Dashboard Container */
.dashboard-container {
    display: flex;
    min-height: calc(100vh - 80px);
}

/* Sidebar Styles */
.dashboard-sidebar {
    width: 280px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-right: 1px solid var(--glass-border);
    transition: var(--transition);
    overflow-y: auto;
    height: calc(100vh - 80px);
    position: sticky;
    top: 80px;
}

.sidebar-nav {
    padding: 20px 0;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    margin-bottom: 5px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    background: rgba(155, 90, 16, 0.1);
    color: var(--primary);
}

.nav-link i {
    width: 20px;
    text-align: center;
}

.submenu-arrow {
    margin-left: auto;
    transition: var(--transition);
}

.has-submenu.active .submenu-arrow {
    transform: rotate(180deg);
}

.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.has-submenu.active .submenu {
    max-height: 500px;
}

.submenu-link {
    display: block;
    padding: 10px 20px 10px 55px;
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.submenu-link:hover {
    background: rgba(155, 90, 16, 0.05);
    color: var(--primary);
}

/* Main Content */
.dashboard-content {
    flex: 1;
    padding: 30px;
    transition: var(--transition);
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

/* Section Styles */
.section-container {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.section-container:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.section-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--glass-border);
}

.section-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

/* Chart Styles */
.chart-container {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--glass-border);
}

.chart-controls {
    display: flex;
    gap: 10px;
}

.timeframe-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    transition: var(--transition);
    cursor: pointer;
}

.timeframe-btn.active, .timeframe-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.chart-placeholder {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(248, 249, 250, 0.5);
}

.chart-placeholder-content {
    text-align: center;
    color: var(--primary);
}

.chart-placeholder-content i {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Market Tiles */
.market-tiles {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.market-tile {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 15px;
    transition: var(--transition);
}

.market-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.tile-title {
    font-weight: 600;
    color: var(--secondary);
}

.tile-change {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
}

.tile-change.positive {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.tile-change.negative {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.tile-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

/* Stat Cards */
.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(155, 90, 16, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-content h3 {
    margin: 0 0 5px;
    font-size: 1.5rem;
    color: var(--primary);
}

.stat-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--secondary);
}

/* Profile Summary */
.profile-summary {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 25px;
}

.profile-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h3 {
    margin: 0 0 10px;
    color: var(--primary);
}

.profile-info p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.referral-section h4 {
    margin-bottom: 15px;
    color: var(--primary);
}

.referral-link-container {
    display: flex;
    margin-bottom: 20px;
}

.referral-link {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--glass-border);
    border-radius: 8px 0 0 8px;
    background: rgba(248, 249, 250, 0.5);
    font-size: 0.9rem;
}

.copy-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: var(--transition);
}

.copy-btn:hover {
    background: var(--secondary);
}

.social-share p {
    margin-bottom: 10px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.facebook {
    background: #3b5998;
}

.social-icon.instagram {
    background: #e1306c;
}

.social-icon.whatsapp {
    background: #25d366;
}

.social-icon.telegram {
    background: #0088cc;
}

/* Data Tables */
.data-tabs .nav-tabs {
    border-bottom: 1px solid var(--glass-border);
}

.data-tabs .nav-link {
    background: transparent;
    border: none;
    color: var(--secondary);
    padding: 10px 20px;
    border-radius: 8px 8px 0 0;
    transition: var(--transition);
}

.data-tabs .nav-link.active {
    background: var(--glass-bg);
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    background: rgba(155, 90, 16, 0.05);
    color: var(--primary);
    font-weight: 600;
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.data-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--glass-border);
}

.data-table tr:hover {
    background: rgba(155, 90, 16, 0.02);
}

.status-badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.active {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.status-badge.inactive {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

.status-badge.completed {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.status-badge.pending {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

/* Tree View */
.tree-container {
    overflow-x: auto;
}

.tree-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.node-content {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 220px;
    margin-bottom: 20px;
    transition: var(--transition);
    cursor: pointer;
}

.node-content.active {
    border-color: var(--primary);
}

.node-content.inactive {
    opacity: 0.7;
}

.node-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.node-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.node-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.node-info h5 {
    margin: 0 0 5px;
    font-size: 0.9rem;
}

.node-info p {
    margin: 0 0 5px;
    font-size: 0.8rem;
    color: #6c757d;
}

.node-status {
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 600;
}

.node-status.active {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.node-status.inactive {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

.node-children {
    display: flex;
    gap: 40px;
    position: relative;
    padding-top: 20px;
}

.tree-branch {
    position: relative;
}

.tree-branch:before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    width: 1px;
    height: 20px;
    background: var(--glass-border);
}

/* Forms Placeholder */
.forms-placeholder {
    text-align: center;
    padding: 40px 20px;
    background: rgba(248, 249, 250, 0.5);
    border-radius: 8px;
    color: var(--secondary);
}

/* Footer */
.dashboard-footer {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    padding: 20px 0;
    color: var(--secondary);
    font-size: 0.9rem;
}

.dashboard-footer a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.dashboard-footer a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .dashboard-sidebar {
        width: 250px;
        position: fixed;
        left: -250px;
        z-index: 999;
    }
    
    .dashboard-sidebar.active {
        left: 0;
    }
    
    .dashboard-content {
        margin-left: 0;
        padding: 20px;
    }
    
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        display: none;
    }
    
    .overlay.active {
        display: block;
    }
}

@media (max-width: 768px) {
    .dashboard-content {
        padding: 15px;
    }
    
    .section-container {
        padding: 20px;
    }
    
    .profile-card {
        flex-direction: column;
        text-align: center;
    }
    
    .data-tabs .nav-link {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .user-name {
        display: none;
    }
    
    .chart-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .node-content {
        width: 180px;
        padding: 10px;
    }
    
    .node-avatar {
        width: 40px;
        height: 40px;
    }
    
    .node-info h5 {
        font-size: 0.8rem;
    }
}

/* Mobile-First Responsive Enhancements */
@media (max-width: 768px) {
  /* Improved mobile header */
  .dashboard-header .row > div:last-child {
    justify-content: flex-end;
  }
  
  .user-name {
    display: none;
  }
  
  /* Enhanced mobile sidebar */
  .dashboard-sidebar {
    width: 85%;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  
  .dashboard-sidebar.active {
    transform: translateX(0);
  }
  
  /* Improved mobile content area */
  .dashboard-content {
    padding: 15px;
    width: 100%;
  }
  
  /* Mobile-optimized cards */
  .stat-card {
    padding: 15px;
    text-align: center;
  }
  
  .stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
  }
  
  /* Mobile-optimized tables */
  .table-responsive {
    border: 1px solid var(--glass-border);
    border-radius: 8px;
  }
  
  /* Mobile-optimized forms */
  .form-section {
    padding: 15px;
  }
  
  .form-row {
    flex-direction: column;
  }
  
  /* Mobile tree view */
  .tree-container {
    overflow-x: auto;
    padding: 10px;
  }
  
  .node-content {
    min-width: 180px;
  }
}

/* Enhanced Table Styles */
.simple-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.simple-table th,
.simple-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid var(--glass-border);
}

.simple-table th {
  background-color: rgba(155, 90, 16, 0.05);
  font-weight: 600;
  color: var(--primary);
}

.simple-table tr:hover {
  background-color: rgba(155, 90, 16, 0.02);
}

.border-table {
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
}

.border-table th,
.border-table td {
  border-right: 1px solid var(--glass-border);
}

.border-table th:last-child,
.border-table td:last-child {
  border-right: none;
}

.stylish-table {
  background: var(--glass-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.stylish-table th {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
}

.stylish-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Table Filter Styles */
.table-filter-container {
  background: var(--glass-bg);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--glass-border);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: end;
}

.filter-group {
  flex: 1;
  min-width: 150px;
}

.filter-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: var(--secondary);
}

.filter-actions {
  display: flex;
  gap: 10px;
}

/* Form Styles */
.form-section {
  background: var(--glass-bg);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
  border: 1px solid var(--glass-border);
}

.form-header {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--glass-border);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  min-width: 250px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--secondary);
}

.form-control {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(155, 90, 16, 0.1);
}

/* Advanced Form Elements */
.input-with-icon {
  position: relative;
}

.input-with-icon .form-control {
  padding-left: 40px;
}

.input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
}

.form-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}

/* Button Variants */
.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--secondary);
  color: white;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* Card Variants */
.card {
  background: var(--glass-bg);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid var(--glass-border);
  margin-bottom: 20px;
}

.card-header {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--glass-border);
}

/* Mobile-Specific Utility Classes */
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }
  
  .desktop-only {
    display: none;
  }
  
  /* Mobile bottom navigation */
  .mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 1000;
  }
  
  .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--secondary);
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 8px;
    transition: var(--transition);
  }
  
  .mobile-nav-item.active,
  .mobile-nav-item:hover {
    background: rgba(155, 90, 16, 0.1);
    color: var(--primary);
  }
  
  .mobile-nav-item i {
    font-size: 1.2rem;
    margin-bottom: 3px;
  }
}

/* Loading States */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--glass-border);
  border-top: 2px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
}

.toast {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 10px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 350px;
  animation: slideInRight 0.3s ease;
}

.toast.success {
  border-left: 4px solid #28a745;
}

.toast.error {
  border-left: 4px solid #dc3545;
}

.toast.warning {
  border-left: 4px solid #ffc107;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}