/**
 * SAW Admin - App Footer
 * @package SAW_Visitors
 * @version 3.0.0
 */

.sa-app-footer {
    position: fixed;
    bottom: 0;
    left: 0; /* Full width */
    right: 0;
    min-height: 45px;
    z-index: 900;
    flex-shrink: 0;
    
    /* Elegant gradient background - matching sidebar */
    background: linear-gradient(
        90deg,
        #0a2540 0%,           /* Very dark navy at left */
        #0d3a5c 50%,          /* Transition */
        #005A8C 100%          /* Brand blue at right */
    );
    
    /* Subtle pattern overlay for depth */
    background-image: 
        linear-gradient(
            90deg,
            #0a2540 0%,
            #0d3a5c 50%,
            #005A8C 100%
        ),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.01) 2px,
            rgba(255, 255, 255, 0.01) 4px
        );
    
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: var(--saw-space-3) var(--saw-space-5);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    box-shadow: 
        0 -2px 8px rgba(0, 0, 0, 0.15),
        0 -1px 0 rgba(255, 255, 255, 0.05);
}

@media (min-width: 1025px) {
    .sa-app-footer {
        left: 0; /* Already full width */
    }
}

@media (max-width: 1024px) {
    .sa-app-footer {
        left: 0;
        display: none; /* Hidden on mobile, replaced by bottom nav */
    }
}

.sa-footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    gap: var(--saw-space-5);
    width: 100%;
    flex-wrap: wrap;
    min-height: 100%;
}

.sa-footer-left,
.sa-footer-right {
    display: flex;
    align-items: center;
    gap: var(--saw-space-3);
    flex-wrap: wrap;
}

.sa-footer-brand {
    font-weight: var(--saw-font-semibold);
    color: rgba(255, 255, 255, 0.95);
    font-size: var(--saw-text-sm);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.sa-footer-version {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--saw-text-xs);
}

.sa-footer-copy {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--saw-text-xs);
}

.sa-footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: var(--saw-text-xs);
    transition: color var(--saw-transition-fast);
}

.sa-footer-link:hover {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

