
    .profile-card {
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s;
    }
    .profile-card:hover {
      transform: translateY(-5px);
    }
    .stat-card {
      border-radius: 12px;
      border: none;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
      transition: all 0.3s;
    }
    .stat-card:hover {
      background-color: #f8f9fa;
      transform: scale(1.03);
    }
    .currency-selector {
      background-color: #fff;
      border-radius: 12px;
      padding: 1.5rem;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    }
    .currency-selector label {
      cursor: pointer;
      padding: 10px 15px;
      border-radius: 8px;
      transition: all 0.2s;
    }
    .currency-selector input[type="radio"]:checked + label {
      background-color: #0d6efd;
      color: white;
    }
    .currency-selector input[type="radio"] {
      display: none;
    }
    .profile-icon {
      height: 50px;
      width: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      margin-right: 15px;
    }
    .badge-count {
      font-size: 1.25rem;
      font-weight: 600;
    }
    .text-primary-emphasis {
      color: #0a58ca;
    }
    .bg-primary-subtle {
      background-color: rgba(13, 110, 253, 0.1);
    }
    .bg-warning-subtle {
      background-color: rgba(255, 193, 7, 0.1);
    }
    .bg-success-subtle {
      background-color: rgba(25, 135, 84, 0.1);
    }
    .bg-info-subtle {
      background-color: rgba(13, 202, 240, 0.1);
    }
    .bg-danger-subtle {
      background-color: rgba(220, 53, 69, 0.1);
    }
    .report{display:none}

    .panel-container {
        position: relative;
        min-height: 100vh;
        overflow: hidden;
     
    }
    
    .summary-panel, .details-panel {
        position: absolute;
        width: 100%;
        height: 100%;
        transition: transform 0.7s ease-in-out;
     
    }
    
    .summary-panel {
        
        transform: translateX(0);
        z-index: 2;
    }
    
    .details-panel {
       
        transform: translateX(100%);
        z-index: 1;
    }
    
    /* .summary-panel.slide-out {
        transform: translateX(-100%);
    }
    
    .details-panel.slide-in {
        transform: translateX(0);
    } */
    .summary-panel.slide-out {
      transform: translateY(-100%);
      transition: transform 0.5s ease-in-out;
  }
  
  .details-panel.slide-in {
      transform: translateY(0);
      transition: transform 0.5s ease-in-out;
  }
  .details-panel {
    transform: translateY(-100%);
    transition: transform 0.5s ease-in-out;
}

  
    .btn-custom {
        background-color: rgba(255, 255, 255, 0.2);
        border: 2px solid white;
        color: white;
        border-radius: 50px;
        padding: 10px 25px;
        transition: all 0.3s;
    }
    
    .btn-custom:hover {
        background-color: white;
        color: #6a11cb;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .card-feature {
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        padding: 15px;
        margin-bottom: 15px;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    h1, h2 {
        font-weight: 700;
    }
    
    .icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    body {
            
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .search-history-container {
        max-width: 800px;
        margin: 40px auto;
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }
    
    .search-history-header {
        background: linear-gradient(to right, #4776E6, #8E54E9);
        color: white;
        padding: 20px;
        text-align: center;
    }
    
    .search-history-item {
        display: flex;
        align-items: center;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
        transition: all 0.3s ease;
    }
    
    .search-history-item:hover {
        background-color: #f8f9fa;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
  
    
    .search-content {
        flex-grow: 1;
    }
    
    .search-text {
        font-weight: 500;
        margin-bottom: 3px;
        color: #333;
    }
    
    .search-time {
        color: #888;
        font-size: 0.8rem;
    }
    
    .delete-btn {
        background-color: transparent;
        border: none;
        color: #dc3545;
        cursor: pointer;
        transition: all 0.2s;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin-left: 10px;
    }
    
    .delete-btn:hover {
        background-color: rgba(220, 53, 69, 0.1);
        transform: scale(1.1);
    }
    
    .empty-state {
        text-align: center;
        padding: 40px 20px;
        color: #999;
    }
    
    .clear-all-btn {
        background: linear-gradient(to right, #4776E6, #8E54E9);
        border: none;
        color: white;
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 0.9rem;
        transition: all 0.3s;
    }
    
    .clear-all-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        background: linear-gradient(to right, #3d68d6, #7e46d9);
    }
    
    .list-container {
        max-height: 400px;
        overflow-y: auto;
    }
    
 
    .list-container::-webkit-scrollbar {
        width: 8px;
    }
    
    .list-container::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    
    .list-container::-webkit-scrollbar-thumb {
        background: #ddd;
        border-radius: 10px;
    }
    
    .list-container::-webkit-scrollbar-thumb:hover {
        background: #ccc;
    }
    

    .animate-item {
        animation: fadeInUp 0.5s;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    #emptyState svg{
      height:100px
    }

    .greeting-box {
      max-width: 400px;
      margin: 50px auto;
      padding: 2rem;
      border-radius: 2rem;
      box-shadow: 0 0 20px rgba(0,0,0,0.1);
      text-align: center;
      background: linear-gradient(to right, #f8f9fa, #e9ecef);
  }
  .greeting-icon {
      font-size: 3rem;
      color: #0d6efd;
  }
  .greeting-text {
      font-size: 1.5rem;
      font-weight: bold;
      margin-top: 1rem;
  }