/* * Custom styles for LegitEBusiness.com
 * Assumes Inter font is loaded in index.html
 * Assumes Tailwind CSS is loaded in index.html
 */

 /* Basic style for the dashboard view cycle
   * Custom styles for the dynamic dashboard preview 
   */
   
    .dashboard-container {
            height: 400px; /* Fixed height for the dashboard graphic */
            overflow: hidden;
            position: relative;
            background-color: #e5e7eb; /* Gray background for the screen */
            border-radius: 1rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            transition: all 0.5s ease-in-out;
        }

        .dashboard-content {
            display: flex;
            width: 300%; /* Enough width for 3 slides */
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
        }

        .dashboard-slide {
            flex-shrink: 0;
            width: calc(100% / 3); /* Each slide takes 1/3 of the container width */
            padding: 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: white; /* Simulate different pages */
        }
        
        .dashboard-slide h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            /* Using the primary-blue */
            color: #1e40af; 
        }
        
        .dashboard-slide ul {
            list-style: none;
            padding: 0;
            margin: 1rem 0 0 0;
            max-width: 300px;
            width: 100%;
        }

        .dashboard-slide li {
            background-color: #f3f4f6;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            margin-bottom: 0.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        }
        
        /* State classes to control the slide position */
        .state-preview { transform: translateX(0%); }
        .state-list-1 { transform: translateX(calc(-100% / 3 * 1)); }
        .state-list-2 { transform: translateX(calc(-100% / 3 * 2)); }


/* Add any custom utility classes or overrides here */