﻿.p-encadre {
    border: 5px solid #95C11F;
}

/* Blocage de la page */
body.consent {
    overflow: hidden;
    height: 100%;
}

/* Fond semi-transparent */
#cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Encadré central */
#cookie-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

button {
    margin: 10px;
    padding: 10px 20px;
}




.iframe-wrapper {
    position: relative;
  width: 100%;
  padding-bottom: 75%;
  height: 0;
  border: 5px solid #95C11F;
  box-sizing: content-box; /* Important */
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

