body {
    font-family: Georgia, serif;
}
h1, h2, h3, .navbar-brand {
    font-family: 'Playfair Display', serif;
}
nav, .widget, aside, footer, .btn, .form-control, .form-select {
    font-family: 'Roboto', sans-serif;
}
.post-card {
    border: 1px dashed var(--bs-border-color);
    border-radius: .5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
}
.post-card__media {
    height: 180px;
    border-radius: .5rem;
    background: repeating-linear-gradient(45deg, #f8f9fa, #f8f9fa 8px, #dee2e6 8px, #dee2e6 16px);
    margin-bottom: 1rem;
}
[data-bs-theme="dark"] .post-card__media {
    background: repeating-linear-gradient(45deg, #2b3035, #2b3035 8px, #495057 8px, #495057 16px);
}

/*.btn-custom {
    min-height: 44px;
}*/

/* Dark mode personnalisé */
[data-bs-theme="dark"] body {
    background-color: #121416;
    color: #e9ecef;
}
[data-bs-theme="dark"] .navbar {
    background-color: #1f2225 !important;
    border-bottom: 1px solid #343a40;
}
[data-bs-theme="dark"] .navbar .nav-link {
    color: #e9ecef !important;
}
[data-bs-theme="dark"] .navbar .nav-link.active {
    color: #0d6efd !important;
}
[data-bs-theme="dark"] .widget, [data-bs-theme="dark"] .post-card {
    background-color: #1f2225;
    border: 1px solid #343a40;
}
[data-bs-theme="dark"] footer {
    background-color: #1f2225 !important;
    border-top: 1px solid #343a40;
    color: #adb5bd;
}
[data-bs-theme="dark"] .btn-outline-secondary {
    color: #e9ecef;
    border-color: #adb5bd;
}
[data-bs-theme="dark"] .btn-outline-secondary:hover {
    background-color: #343a40;
    border-color: #495057;
}
[data-bs-theme="dark"] .form-control, [data-bs-theme="dark"] .form-select {
    background-color: #2b3035;
    color: #e9ecef;
    border-color: #495057;
}
[data-bs-theme="dark"] .form-control:focus, [data-bs-theme="dark"] .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.target-img { cursor: pointer; border-radius: .5rem; }
.info-box { background-color: var(--bs-body-bg); border: 1px solid var(--bs-border-color); border-radius: .5rem; padding: 1rem; margin-bottom: 1rem; }
[data-bs-theme="dark"] .info-box { background-color: #1f2225; border: 1px solid #343a40; }

/* Accessibilité et visibilité */
table th {
  background-color: #f8f9fa; /* contraste clair */
  font-weight: 600;
}

[data-bs-theme="dark"] table th {
  background-color: #2b3035; /* contraste sombre */
  color: #fff;
}

table td, table th {
  padding: 0.75rem;
  vertical-align: middle;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
