:root {
    --primary-blue: #2196F3;
    --primary-green: #4CAF50;
    --primary-amber: #FFC107;
    --primary-red: #F44336;
    --primary-purple: #9C27B0;
    
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --dark-text: #333333;
    --light-text: #666666;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
    
    --nav-height: 70px;
    --header-height: 60px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--light-bg);
    color: var(--dark-text);
    line-height: 1.6;
    padding-bottom: var(--nav-height);
}

/* Header Styles */
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: white;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 100%;
}

.header-content h1 {
    font-size: 1.5rem;
    font-weight: 600;
}

.menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.menu-toggle:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Main Content */
.app-main {
    margin-top: var(--header-height);
    padding: 20px;
    min-height: calc(100vh - var(--header-height) - var(--nav-height));
}

.page-section {
    display: none;
}

.page-section.active {
    display: block;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 1.8rem;
    color: var(--primary-green);
    font-weight: 600;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: white;
}

/* Cards */
.welcome-card {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: white;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    text-align: center;
}

.welcome-card h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.welcome-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-card i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Recent Activities */
.recent-activities {
    background: var(--white);
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.recent-activities h3 {
    color: var(--primary-green);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.activities-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
}

.activity-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
}

.activity-content h4 {
    margin-bottom: 5px;
    color: var(--dark-text);
}

.activity-content p {
    color: var(--light-text);
    font-size: 0.9rem;
}

.no-activities {
    text-align: center;
    color: var(--light-text);
    font-style: italic;
    padding: 40px 20px;
}

/* Search and Filter */
.search-filter, .reminders-filter, .growth-filter {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.search-filter input, .search-filter select,
.growth-filter select {
    flex: 1;
    min-width: 200px;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--white);
}

.search-filter input:focus, .search-filter select:focus,
.growth-filter select:focus {
    outline: none;
    border-color: var(--primary-green);
}

/* Filter Buttons */
.reminders-filter, .pest-categories {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.filter-btn, .category-btn {
    padding: 10px 16px;
    border: 2px solid var(--border-color);
    background: var(--white);
    color: var(--dark-text);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.filter-btn.active, .category-btn.active {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.filter-btn:hover, .category-btn:hover {
    border-color: var(--primary-green);
}

/* Plants Grid */
.plants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.plant-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    cursor: pointer;
}

.plant-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.plant-card-header {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: white;
    padding: 20px;
    text-align: center;
}

.plant-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.plant-card-header h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.plant-species {
    opacity: 0.8;
    font-size: 0.9rem;
}

.plant-card-body {
    padding: 20px;
}

.plant-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.plant-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.plant-info-item i {
    color: var(--primary-green);
    width: 16px;
}

.plant-actions {
    display: flex;
    gap: 10px;
}

.plant-action-btn {
    flex: 1;
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
}

.plant-action-btn.primary {
    background: var(--primary-green);
    color: white;
}

.plant-action-btn.secondary {
    background: var(--light-bg);
    color: var(--dark-text);
}

.plant-action-btn:hover {
    transform: translateY(-1px);
}

/* Reminders List */
.reminders-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reminder-card {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
}

.reminder-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.reminder-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.reminder-icon.water {
    background: var(--primary-blue);
}

.reminder-icon.fertilize {
    background: var(--primary-green);
}

.reminder-icon.overdue {
    background: var(--primary-red);
}

.reminder-content {
    flex: 1;
}

.reminder-content h4 {
    margin-bottom: 5px;
    color: var(--dark-text);
}

.reminder-plant {
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 5px;
}

.reminder-date {
    color: var(--light-text);
    font-size: 0.9rem;
}

.reminder-actions {
    display: flex;
    gap: 10px;
}

.reminder-action-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
}

.reminder-action-btn.complete {
    background: var(--primary-green);
    color: white;
}

.reminder-action-btn.delete {
    background: var(--primary-red);
    color: white;
}

/* Growth Timeline */
.growth-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.growth-entry {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.growth-entry:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.growth-entry-header {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.growth-plant-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.growth-date {
    font-size: 0.9rem;
    opacity: 0.8;
}

.growth-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.growth-notes {
    padding: 20px;
    color: var(--dark-text);
    line-height: 1.6;
}

/* Pest Database */
.pest-database {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.pest-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.pest-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.pest-card-header {
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-purple));
    color: white;
    text-align: center;
}

.pest-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.pest-card-header h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.pest-type {
    opacity: 0.8;
    font-size: 0.9rem;
}

.pest-card-body {
    padding: 20px;
}

.pest-symptoms {
    margin-bottom: 20px;
}

.pest-symptoms h4 {
    color: var(--primary-red);
    margin-bottom: 10px;
    font-size: 1rem;
}

.pest-symptoms ul {
    list-style: none;
    padding-left: 0;
}

.pest-symptoms li {
    padding: 5px 0;
    color: var(--dark-text);
    position: relative;
    padding-left: 20px;
}

.pest-symptoms li:before {
    content: "•";
    color: var(--primary-red);
    position: absolute;
    left: 0;
}

.pest-solutions {
    background: var(--light-bg);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.pest-solutions h4 {
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 1rem;
}

/* Weather Card */
.weather-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: white;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.weather-current {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.weather-icon {
    font-size: 4rem;
}

.weather-info h3 {
    font-size: 3rem;
    margin-bottom: 5px;
}

.weather-info p {
    opacity: 0.8;
    margin-bottom: 5px;
}

.weather-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.weather-detail {
    text-align: center;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.weather-detail i {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

.weather-detail span:last-child {
    font-weight: bold;
    font-size: 1.1rem;
}

/* Recommendations */
.recommendations-section, .seasonal-tasks {
    background: var(--white);
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.recommendations-section h3, .seasonal-tasks h3 {
    color: var(--primary-green);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.recommendations-list, .tasks-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recommendation-item, .task-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
}

.recommendation-icon, .task-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
}

.recommendation-content, .task-content {
    flex: 1;
}

.recommendation-content h4, .task-content h4 {
    margin-bottom: 5px;
    color: var(--dark-text);
}

.recommendation-content p, .task-content p {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin: 30px 0;
}

.faq-section h2 {
    color: var(--primary-green);
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.8rem;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-green);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-question[aria-expanded="true"] {
    background: var(--primary-green);
    color: white;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    background: var(--light-bg);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
}

.faq-answer:not([hidden]) {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--dark-text);
    line-height: 1.6;
    margin: 0;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: var(--white);
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-hover);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 25px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: white;
}

.modal-header h3 {
    font-size: 1.3rem;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.close-modal:hover {
    background: rgba(255,255,255,0.1);
}

/* Forms */
form {
    padding: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.checkbox-group label:hover {
    background: var(--light-bg);
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

/* Camera Preview */
.camera-preview, .problem-preview {
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
    max-height: 300px;
}

.camera-preview img, .problem-preview img {
    width: 100%;
    height: auto;
    display: block;
}

/* Problem Results */
.problem-results {
    padding: 25px;
}

.problem-result {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-red);
}

.problem-result h4 {
    color: var(--primary-red);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.problem-result .confidence {
    background: var(--primary-green);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
}

.problem-result .symptoms,
.problem-result .solutions {
    margin-bottom: 15px;
}

.problem-result .symptoms h5,
.problem-result .solutions h5 {
    color: var(--dark-text);
    margin-bottom: 8px;
    font-size: 1rem;
}

.problem-result ul {
    list-style: none;
    padding-left: 0;
}

.problem-result li {
    padding: 3px 0;
    color: var(--dark-text);
    position: relative;
    padding-left: 15px;
}

.problem-result li:before {
    content: "•";
    color: var(--primary-red);
    position: absolute;
    left: 0;
}

/* Empty States */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--light-text);
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--border-color);
}

.empty-state p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.empty-subtitle {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 30px;
}

/* Loading States */
.loading-text {
    text-align: center;
    color: var(--light-text);
    font-style: italic;
    padding: 20px;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: var(--white);
    border-top: 2px solid var(--border-color);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--light-text);
    font-size: 0.8rem;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s;
    min-width: 60px;
}

.nav-item i {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.nav-item.active {
    color: var(--primary-green);
    background: rgba(76, 175, 80, 0.1);
}

.nav-item:hover {
    color: var(--primary-green);
    background: rgba(76, 175, 80, 0.05);
}

/* Footer */
footer {
    background: var(--dark-text);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .app-main {
        padding: 15px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .plants-grid {
        grid-template-columns: 1fr;
    }
    
    .search-filter, .growth-filter {
        flex-direction: column;
    }
    
    .search-filter input, .search-filter select,
    .growth-filter select {
        min-width: auto;
    }
    
    .weather-current {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .weather-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .pest-database {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 10px;
        max-height: calc(100vh - 20px);
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .reminder-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .reminder-actions {
        justify-content: center;
    }
    
    .bottom-nav {
        padding: 0 5px;
    }
    
    .nav-item {
        font-size: 0.7rem;
        padding: 6px 8px;
        min-width: 50px;
    }
    
    .nav-item i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 1.2rem;
    }
    
    .welcome-card {
        padding: 20px;
    }
    
    .welcome-card h2 {
        font-size: 1.5rem;
    }
    
    .stat-card {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .plant-card-header, .pest-card-header {
        padding: 15px;
    }
    
    .plant-icon, .pest-icon {
        font-size: 2.5rem;
    }
    
    .weather-card {
        padding: 20px;
    }
    
    .weather-info h3 {
        font-size: 2.5rem;
    }
    
    .weather-icon {
        font-size: 3rem;
    }
    
    .modal-header, form {
        padding: 20px;
    }
    
    .nav-item span {
        display: none;
    }
    
    .nav-item {
        min-width: 40px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .bottom-nav,
    .app-header,
    .btn-primary,
    .btn-secondary {
        display: none !important;
    }
    
    .app-main {
        margin-top: 0;
        padding-bottom: 0;
    }
    
    .page-section {
        display: block !important;
        page-break-after: always;
    }
}
