* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5;
    padding: 20px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

h1 {
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.last-update {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* Responsive : 2 colonnes sur tablettes, 1 colonne sur mobile */
@media (max-width: 1024px) {
    .status-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .status-grid {
        grid-template-columns: 1fr;
    }
}

.status-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.status-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.transporter-logo {
    height: 48px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.status-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.status-operational {
    background: #d4edda;
    color: #155724;
}

.status-degraded {
    background: #fff3cd;
    color: #856404;
}

.status-down {
    background: #f8d7da;
    color: #721c24;
}

.status-unknown {
    background: #e2e3e5;
    color: #383d41;
}

.status-maintenance {
    background: #d1ecf1;
    color: #0c5460;
}

.status-message {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.status-time {
    color: #999;
    font-size: 12px;
}

.severity-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 5px;
}

.severity-low { background: #28a745; }
.severity-medium { background: #ffc107; }
.severity-high { background: #fd7e14; }
.severity-critical { background: #dc3545; }

.news-section {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.news-section h2 {
    color: #333;
    margin-bottom: 20px;
}

.news-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.news-item:last-child {
    border-bottom: none;
}

.news-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.news-meta {
    color: #999;
    font-size: 12px;
}

.category-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: capitalize;
}

.category-incident {
    background: #ffeaa7;
    color: #d63031;
}

.category-greve {
    background: #ff7675;
    color: #fff;
}

.category-maintenance {
    background: #74b9ff;
    color: #0984e3;
}

.category-actualite {
    background: #a29bfe;
    color: #6c5ce7;
}

.refresh-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
    transition: all 0.3s;
}

.refresh-btn:hover {
    background: #0056b3;
    transform: scale(1.05);
}

.loading {
    text-align: center;
    padding: 50px;
    color: #666;
}

.error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}

.button-group {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.history-btn, .news-btn {
    flex: 1;
    padding: 8px 15px;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.history-btn {
    background: #007bff;
}

.history-btn:hover {
    background: #0056b3;
}

.news-btn {
    background: #28a745;
}

.news-btn:hover {
    background: #1e7e34;
}

/* Styles pour les actualités dans la modal */
.news-item-modal {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.news-item-modal:last-child {
    border-bottom: none;
}

.news-item-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    font-size: 16px;
}

.news-item-content {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Support du HTML dans le contenu */
.news-item-content p {
    margin: 10px 0;
    line-height: 1.6;
}

.news-item-content ul {
    margin: 10px 0;
    padding-left: 20px;
    list-style-type: disc;
}

.news-item-content ol {
    margin: 10px 0;
    padding-left: 25px;
    list-style-type: decimal;
}

.news-item-content li {
    margin: 5px 0;
    line-height: 1.5;
}

.content-preview,
.content-full {
    margin-bottom: 10px;
}

/* Wrapper pour le contenu HTML des actualités */
.content-wrapper,
.content-wrapper * {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

.content-wrapper {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

/* Styles pour les tableaux dans les actualités */
.content-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    background-color: white;
}

.content-wrapper table th,
.content-wrapper table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.content-wrapper table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.content-wrapper table tr:nth-child(even) {
    background-color: #fafafa;
}

.content-wrapper table tr:hover {
    background-color: #f0f0f0;
}

/* Styles pour les paragraphes et titres dans le contenu */
.content-wrapper p {
    margin: 10px 0;
}

.content-wrapper h2 {
    margin: 20px 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

/* Bouton Afficher plus/moins */
.toggle-content-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 14px;
    display: inline-block;
}

.toggle-content-btn:hover {
    background: #0056b3;
}

.news-item-date {
    color: #999;
    font-size: 12px;
    margin-top: 10px;
}

.news-item-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
    font-size: 12px;
    color: #999;
}

.news-item-zones {
    color: #007bff;
    font-size: 12px;
    font-style: italic;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.pagination-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.pagination-btn:hover:not(:disabled) {
    background: #0056b3;
}

.pagination-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.pagination-info {
    color: #666;
    font-size: 14px;
    min-width: 120px;
    text-align: center;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    border-radius: 10px;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.modal-header h2 {
    margin: 0;
    color: #333;
    font-size: 20px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #333;
}

.modal-body {
    padding: 20px;
    overflow-y: auto;
}

.incident-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.incident-item:last-child {
    border-bottom: none;
}

.incident-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.incident-content {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.incident-date {
    color: #999;
    font-size: 12px;
}

.archived-badge {
    font-style: italic;
    color: #6c757d;
    font-weight: normal;
}

.news-item-archived {
    color: #6c757d;
    font-size: 12px;
    font-style: italic;
    margin-top: 5px;
}

/* Encadrés Important dans le contenu - SEULEMENT pour "Important :" */
.news-item-content p strong {
    font-weight: bold;
}

/* Bandeau bleu uniquement pour les paragraphes contenant "Important :" */
.news-item-content p:has(strong:contains("Important")) {
    background: #e7f3ff;
    border-left: 4px solid #0066cc;
    padding: 10px 15px;
    margin: 15px 0;
}

/* Fallback pour navigateurs ne supportant pas :contains() */
.news-item-content .important-alert {
    background: #e7f3ff;
    border-left: 4px solid #0066cc;
    padding: 10px 15px;
    margin: 15px 0;
}

.news-item-content .important-alert strong {
    color: #0066cc;
}

/* Support des sous-listes */
.news-item-content ul ul {
    margin: 5px 0 5px 20px;
    padding-left: 20px;
}

.news-item-content ul ul li {
    list-style-type: circle;
}

/* Composants impactés dans les incidents */
.incident-components {
    margin: 10px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}

.incident-components strong {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.component-badge {
    display: inline-block;
    padding: 5px 12px;
    margin: 3px 5px 3px 0;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #bbdefb;
}

/* ===== Loader Global ===== */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 245, 245, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.loader-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.socket {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%;
    margin-left: -100px;
    top: 50%;
    margin-top: -100px;
}

.hex-brick {
    background: #ABF8FF;
    width: 30px;
    height: 17px;
    position: absolute;
    top: 5px;
    animation-name: fade;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    -webkit-animation-name: fade;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
}

.h2 {
    transform: rotate(60deg);
    -webkit-transform: rotate(60deg);
}

.h3 {
    transform: rotate(-60deg);
    -webkit-transform: rotate(-60deg);
}

.gel {
    height: 30px;
    width: 30px;
    transition: all .3s;
    -webkit-transition: all .3s;
    position: absolute;
    top: 50%;
    left: 50%;
}

.center-gel {
    margin-left: -15px;
    margin-top: -15px;
    animation-name: pulse;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    -webkit-animation-name: pulse;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
}

.c1 {
    margin-left: -47px;
    margin-top: -15px;
}

.c2 {
    margin-left: -31px;
    margin-top: -43px;
}

.c3 {
    margin-left: 1px;
    margin-top: -43px;
}

.c4 {
    margin-left: 17px;
    margin-top: -15px;
}

.c5 {
    margin-left: -31px;
    margin-top: 13px;
}

.c6 {
    margin-left: 1px;
    margin-top: 13px;
}

.c7 {
    margin-left: -63px;
    margin-top: -43px;
}

.c8 {
    margin-left: 33px;
    margin-top: -43px;
}

.c9 {
    margin-left: -15px;
    margin-top: 41px;
}

.c10 {
    margin-left: -63px;
    margin-top: 13px;
}

.c11 {
    margin-left: 33px;
    margin-top: 13px;
}

.c12 {
    margin-left: -15px;
    margin-top: -71px;
}

.c13 {
    margin-left: -47px;
    margin-top: -71px;
}

.c14 {
    margin-left: 17px;
    margin-top: -71px;
}

.c15 {
    margin-left: -47px;
    margin-top: 41px;
}

.c16 {
    margin-left: 17px;
    margin-top: 41px;
}

.c17 {
    margin-left: -79px;
    margin-top: -15px;
}

.c18 {
    margin-left: 49px;
    margin-top: -15px;
}

.c19 {
    margin-left: -63px;
    margin-top: -99px;
}

.c20 {
    margin-left: 33px;
    margin-top: -99px;
}

.c21 {
    margin-left: 1px;
    margin-top: -99px;
}

.c22 {
    margin-left: -31px;
    margin-top: -99px;
}

.c23 {
    margin-left: -63px;
    margin-top: 69px;
}

.c24 {
    margin-left: 33px;
    margin-top: 69px;
}

.c25 {
    margin-left: 1px;
    margin-top: 69px;
}

.c26 {
    margin-left: -31px;
    margin-top: 69px;
}

.c27 {
    margin-left: -79px;
    margin-top: -15px;
}

.c28 {
    margin-left: -95px;
    margin-top: -43px;
}

.c29 {
    margin-left: -95px;
    margin-top: 13px;
}

.c30 {
    margin-left: 49px;
    margin-top: 41px;
}

.c31 {
    margin-left: -79px;
    margin-top: -71px;
}

.c32 {
    margin-left: -111px;
    margin-top: -15px;
}

.c33 {
    margin-left: 65px;
    margin-top: -43px;
}

.c34 {
    margin-left: 65px;
    margin-top: 13px;
}

.c35 {
    margin-left: -79px;
    margin-top: 41px;
}

.c36 {
    margin-left: 49px;
    margin-top: -71px;
}

.c37 {
    margin-left: 81px;
    margin-top: -15px;
}

.r1 {
    animation-name: pulse;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-delay: .2s;
    -webkit-animation-name: pulse;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-delay: .2s;
}

.r2 {
    animation-name: pulse;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-delay: .4s;
    -webkit-animation-name: pulse;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-delay: .4s;
}

.r3 {
    animation-name: pulse;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-delay: .6s;
    -webkit-animation-name: pulse;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-delay: .6s;
}

.r1 > .hex-brick {
    animation-name: fade;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-delay: .2s;
    -webkit-animation-name: fade;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-delay: .2s;
}

.r2 > .hex-brick {
    animation-name: fade;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-delay: .4s;
    -webkit-animation-name: fade;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-delay: .4s;
}

.r3 > .hex-brick {
    animation-name: fade;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-delay: .6s;
    -webkit-animation-name: fade;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-delay: .6s;
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(0.01);
        transform: scale(0.01);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes fade {
    0% {
        background: #ABF8FF;
    }

    50% {
        background: #90BBBF;
    }

    100% {
        background: #ABF8FF;
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(0.01);
        transform: scale(0.01);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes fade {
    0% {
        background: #ABF8FF;
    }

    50% {
        background: #389CA6;
    }

    100% {
        background: #ABF8FF;
    }
}
/* ===== Bandeau d'annonce ===== */
.announcement-banner {
    padding: 15px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.announcement-banner.animation-slide {
    animation: slideDown 0.5s ease-out;
}

.announcement-banner.animation-fade {
    animation: fadeIn 0.5s ease-out;
}

.announcement-banner.animation-pulse {
    animation: announcementPulse 1.5s ease-in-out infinite;
}

.announcement-banner.animation-bounce {
    animation: bounce 0.8s ease-out;
}

.announcement-banner.animation-shake {
    animation: shake 0.5s ease-in-out;
}

.announcement-banner.animation-glow {
    animation: glow 2s ease-in-out infinite;
}

.announcement-banner.animation-zoom {
    animation: zoomIn 0.6s ease-out;
}

.announcement-banner.animation-slideLeft {
    animation: slideLeft 0.6s ease-out;
}

.announcement-banner.animation-slideRight {
    animation: slideRight 0.6s ease-out;
}

.announcement-banner.animation-rotate {
    animation: rotateIn 0.6s ease-out;
}

.announcement-banner.animation-wave {
    animation: wave 2s ease-in-out infinite;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes announcementPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.01);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-7px);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                    0 0 30px rgba(255, 255, 255, 0.6),
                    0 2px 8px rgba(0, 0, 0, 0.1);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideLeft {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideRight {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes rotateIn {
    from {
        transform: rotate(-180deg) scale(0);
        opacity: 0;
    }
    to {
        transform: rotate(0) scale(1);
        opacity: 1;
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(1deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

/* Footer RGPD */
.site-footer {
    background: #2c3e50;
    color: white;
    padding: 30px 20px;
    margin-top: 60px;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
    margin: 0 10px;
}

.footer-links a:hover {
    color: #5dade2;
    text-decoration: underline;
}

.footer-separator {
    color: #7f8c8d;
    margin: 0 10px;
}

.footer-text {
    color: #bdc3c7;
    margin: 0 10px;
}

.footer-info {
    color: #95a5a6;
    font-size: 14px;
    margin-top: 10px;
}

/* Banner de consentement RGPD/Cookies */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    animation: slideUp 0.5s ease-out;
}

.cookie-consent-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 48px;
    animation: wave 2s infinite;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
    color: white;
}

.cookie-text strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.95;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn-accept {
    background: white;
    color: #667eea;
}

.cookie-btn-accept:hover {
    background: #f8f9fa;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cookie-btn-info {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn-info:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive pour le banner de consentement */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .cookie-icon {
        font-size: 36px;
    }

    .cookie-text {
        min-width: auto;
    }

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }
}

/* Points relais link */
.points-relais-link {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #4f6ef7, #7c3aed);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: opacity 0.2s, transform 0.1s;
    box-shadow: 0 2px 10px rgba(79, 110, 247, 0.3);
}

.points-relais-link:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(79, 110, 247, 0.4);
}
