/* Only targets Login and Logout pages */
body.login::after,
body.auth-logout::after {
    content: "© 2026 PropTeller AI. All rights reserved.";
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;

    /* Layout & Styling */
    display: flex;
    justify-content: left;
    align-items: center;
    height: 50px;
    font-size: 0.875rem;
    color: #6b7280;
    margin-left: 20px;
    background-color: transparent; /* Clean look for login pages */

}

/* Dark Mode Support */
.dark body.login::after,
.dark body.auth-logout::after {
    color: #9ca3af;
    border-top-color: rgba(55, 65, 81, 0.5);
}

/* Hides only links that point exactly to "/" */
a[href="/"] {
    display: none !important;
}
