/* Footer Container */
.footer {
    padding: 15px 0; /* Reduced padding for balanced height */
    background-color: #005eb8; /* Matches login / app header */
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: auto; /* Push footer to the bottom */
    width: 100%; /* Full width footer */
}

/* Footer Text */
.footer p {
    font-size: 14px;
    color: #ffffff; /* White text for readability */
    margin: 0;
    font-weight: 500;
    line-height: 1.6; /* Improved line height */
}

/* Footer Logo */
.footer img {
    max-height: 35px; /* Slightly reduced logo size */
    transition: all 0.3s ease-in-out;
}

/* Logo Hover Effect */
.footer img:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer {
        padding: 10px 0; /* Adjust padding for smaller screens */
    }
    .footer p {
        font-size: 12px;
    }
    .footer img {
        max-height: 30px;
    }
}
