.dashboard-page {
    padding-bottom: 120px;
}

.dashboard-header {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 24px;
}

.menu-button {
    border: none;
    background: none;
    font-size: 30px;
    cursor: pointer;
}

.dashboard-content {
    padding: 0 20px;
}

.system-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #3bb54a;
    border-radius: 50%;
}

.status-title {
    font-size: 34px;
    font-weight: bold;
    color: #3bb54a;
}

.status-subtitle {
    color: #444;
    margin-top: 6px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 20px;
}

.dashboard-card {
    background: white;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.dashboard-card-title {
    margin-top: 10px;
    color: #666;
}

.dashboard-card-value {
    font-size: 28px;
    font-weight: bold;
    margin-top: 10px;
}

.dashboard-card-footer {
    margin-top: 12px;
    color: #3bb54a;
}

.zone-card {
    background: white;
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 24px;
}

.zone-title {
    font-size: 36px;
    font-weight: bold;
}

.zone-subtitle {
    color: #777;
    margin-top: 10px;
}

.watering-button {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 18px;
    background: #3bb54a;
    color: white;
    font-size: 22px;
    font-weight: bold;
    margin-top: 20px;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.scenario-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.scenario-button {
    background: white;
    border-radius: 20px;
    padding: 18px 10px;
    text-align: center;
}

.bottom-navigation {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 430px;
    height: 90px;
    background: #071b35;
    border-radius: 28px 28px 0 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.bottom-nav-item {
    color: white;
    font-size: 12px;
    text-align: center;
}

.bottom-nav-item.active {
    color: #1ea7ff;
}

.side-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 20;
}

.side-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 30;
    transition: 0.3s;
    padding: 24px;
}

.side-menu.open {
    right: 0;
}

.side-menu-header {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
}

.side-menu-item {
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}