/* Footer Navigation Styles */
.user-matcher-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100% !important;
    height: 60px;
    box-sizing: border-box;
    background: #333333;
    border-top: 4px solid #333333;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    margin: 0 auto;
    padding: 0 5px;
}

.user-matcher-footer a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #f9f9f9 !important;
    font-size: 0.8rem;
    padding: 8px 0;
    transition: color 0.2s ease;
    flex-grow: 1;
    text-align: center;
    position: relative;
    max-width: 20%;
}

.user-matcher-footer a .material-icons {
    font-size: 1.3rem !important;
}

.user-matcher-footer a:hover {
    color: #ffffff;
}

.user-matcher-footer a.active {
    color: #ffffff !important;
}

.user-matcher-footer span {
    font-size: 0.7em; /* Adjust font size for the labels */
    text-align: center;
    white-space: nowrap; /* Prevent labels from wrapping */
    color: #f9f9f9; /* Label color */
}

.user-matcher-footer a.active span {
    color: #ffffff !important; /* Active label color */
}

/* Footer notification badges */
.user-matcher-footer a {
    position: relative;
}

.footer-badge {
    position: absolute;
    top: 1px;
    right: 1px;
    background: #ffffff;
    color: #333333 !important;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

@media (max-width: 480px) {
    .footer-badge {
        width: 16px;
        height: 16px;
        font-size: 0.6rem;
    }
}
