/* Portal Footer Styles */

.portal-footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ecf0f1;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000; /* Above sidebar (999) to cover it */
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.copyright-text {
    margin: 0;
    font-size: 14px;
    color: #ffffff;
}

/* Adjust sidebar to not overlap footer */
.sidebar {
    height: calc(100vh - 50px) !important;
    padding-bottom: 20px !important;
}

/* Add bottom padding to main content to prevent footer overlap */
.main_content {
    padding-bottom: 70px !important; /* 50px footer + 20px spacing */
}
