/* Footer Component Styles */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    text-align: center;
}

.footer-banner {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 15px 20px;
    font-size: 12px;
    color: #666;
}

.powered-by-link {
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.powered-by-link:hover {
    opacity: 0.8;
}

.powered-by {
    font-weight: 500;
    color: #007bff;
    cursor: pointer;
}