/* static/css/footer-panel.css */

.footer-panel {
    background-color: #ffffff;
    border-top: 1px solid #dee2e6;
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
}

.footer-link {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #0d6efd;
    text-decoration: underline;
}
@font-face {
          font-family: '{{ preferred_font.name }}';
          src: url('{{ preferred_font.ttf_file.url }}') format('truetype'),
               url('{{ preferred_font.woff_file.url }}') format('woff'),
               url('{{ preferred_font.eot_file.url }}') format('eot'),
               url('{{ preferred_font.woff2_file.url }}') format('woff2');
      }
      body, h1, h2, h3, h4, h5, h6, p, a, span, div, li, ul, ol, input, select, textarea, button {
        font-family: '{{ preferred_font.name }}';
      }