/* footer.css - Footer component styles */

app-footer {
    display: block;
    height: 25px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-green));
    margin-top: auto;
    position: relative;
    z-index: 100;
}

.footer-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
    font-weight: 300;
    opacity: 0.8;
}

.footer-text {
    text-align: center;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .footer-container {
        font-size: 11px;
        padding: 0 10px;
    }
}