
/* app.css - Styles for DolphyFin Authenticated SaaS Dashboard */
.app-container {
    display: flex;
    min-height: 100vh;
    background-color: #F8FAFC;
}

.sidebar {
    width: 260px;
    background-color: #01011C;
    color: #94A3B8;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    height: 100vh;
    z-index: 40;
}

.main-content {
    margin-left: 260px;
    flex: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.topbar {
    height: 70px;
    background-color: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 30;
}

/* Sidebar items */
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: #94A3B8;
    font-size: 0.875rem;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}
.sidebar-link:hover {
    color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.03);
}
.sidebar-link.active {
    color: #FFFFFF;
    background-color: rgba(127, 78, 201, 0.1);
    border-left-color: #7F4EC9;
}

/* responsive mobile dashboard layout overrides */
@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    .sidebar.active {
        transform: translateX(0);
    }
    .main-content {
        margin-left: 0;
    }
}
