.saas-dashboard {
    display: flex;
    font-family: Arial;
}

/* Sidebar */
.sidebar {
    width: 220px;
    background: #fff;
    padding: 20px;
    border-right: 1px solid #eee;
    height: 100vh;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    padding: 10px;
    cursor: pointer;
    border-radius: 6px;
}

.sidebar ul li.active,
.sidebar ul li:hover {
    background: #347433;
    color: #fff;
}

/* Main */
.main-content {
    flex: 1;
    padding: 30px;
    background: #f8f9fa;
}

/* Cards */
.stats {
    display: flex;
    gap: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
}

/* Tabs */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Form */
input, button {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
}

button {
    background: #347433;
    color: white;
    border: none;
}