/* App-like Footer Styles */
:root {
    --primary: #6b21a8;
    --primary-dark: #5b1a8e;
    --text: #1f2937;
    --text-secondary: #4b5563;
    --background: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.app-footer {
    background: var(--background);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 16px 24px;
    text-align: center;
    /* Uncomment for fixed footer */
    /* position: fixed; */
    /* bottom: 0; */
    /* left: 0; */
    /* right: 0; */
    /* z-index: 1000; */
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .app-footer {
        padding: 12px 16px;
    }
    .footer-text {
        font-size: 0.85rem;
    }
}