/* Copyright Footer Styles */
.footer {
    position: relative;
    padding-bottom: 30px; /* Add extra padding at the bottom */
}

.copyright {
    margin-top: 20px;
    padding-top: 15px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.copyright a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.copyright a:hover {
    color: #fff;
} 

/* Light theme overrides for footer */
.light-theme .footer {
    background: transparent;
}
.light-theme .copyright {
    color: rgba(10, 10, 10, 0.6);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.light-theme .copyright a {
    color: rgba(10, 10, 10, 0.75);
}
.light-theme .copyright a:hover {
    color: rgba(10, 10, 10, 0.95);
}