/* public-theme.css */

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #333;
}

.public-header {
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1030;
    transition: background-color 0.3s ease-in-out;
}

.public-header.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.public-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 40px 0;
}

.public-footer a {
    color: #fff;
    text-decoration: none;
}

.public-footer a:hover {
    text-decoration: underline;
}
