.filament-footer {
    color: theme('colors.gray.600');
    padding: 1rem 0;
    text-align: center;
    width: 100%;
}

.dark .filament-footer {
    color: theme('colors.gray.400');
}

.filament-footer.fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
}

.filament-footer a {
    color: theme('colors.blue.600');
    text-decoration: underline;
    transition: color 0.2s;
}

.filament-footer a:hover {
    color: theme('colors.blue.800');
}

.dark .filament-footer a {
    color: theme('colors.blue.400');
}

.dark .filament-footer a:hover {
    color: theme('colors.blue.300');
}