.tv-cookies-consent-content-container{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    z-index: 99999;
}

.tv-cookies-consent-content-container-wrapper{
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.tv-cookies-consent-content-container h2{
    color: #00492B;
    font-size: 24px;
    margin-bottom: 10px;
    margin-top: 0;
}

.tv-cookies-consent-content-container p{
    color: #555;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
}
.tv-cookies-consent-content-container a{
    color: #1a73e8;
    text-decoration: none;
}
.tv-cookies-consent-content-container a:hover{
    text-decoration: underline;
}
.tv-cookies-consent-content-container ul{
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.tv-cookies-consent-content-container li{
    margin-bottom: 8px;
    color: #555;
    font-size: 16px;
}

.tv-cookies-consent-content-container-wrapper button{
    padding: 10px 20px;
    margin-right: 10px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    background-color: #00492B;
    min-width: 150px;
}

.tv-cookies-consent-content-container-wrapper button:hover{
    opacity: 0.9;
}

.tv-cookies-consent-content-container-wrapper a{
    color: #00492B;
}

.tv-cookies-consent-content-container-wrapper a:hover{
    color: #00492B;
}

.tv-cookies-consent-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: auto;
}

/* Mobile */
@media screen and (max-width: 600px) {
  .tv-cookies-consent-content{
      flex-direction: column;
  }  
}

/* Tablet */
@media screen and (max-width: 900px) and (min-width: 601px) {
  .tv-cookies-consent-content{
      flex-direction: column;
  } 
}