html {
    box-sizing: border-box;
}
:root{
    --accent-color : rgb(46, 195, 150);
    --accent-color-dim : rgba(100, 100, 100, 0.2);
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    margin: 0px;
    padding: 0px;
    color: #ffffff;
    background-color: #FFF;
    font-family: "inter", sans-serif;
    background-color: #1f1f1f;
}

h1,h2,h3,h4,h5,p,ul {
    padding: 0;
    margin: 0;
    font-weight: 400;
}

a{
    color: #ffffff;
}

h1{
    font-size: 2.8rem;
    color: var(--accent-color);
}

p{
    color: #ffffff;
}

.header-container{
    margin-bottom: 20px;
}

.header-description{
    margin-top: 10px;
    color: #FFF;
}

.logo-container{
    max-height: 200px;
    margin: 50px auto;
    max-width: 400px;
    padding: 0px 30px;
}

.logo-container img{
    width: 100%;
    max-height: 200px;
    object-fit: contain;
}

.cookie-content{
    text-align: center;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

form{
    margin-bottom: 0px;
}

.cookie-group{
    padding: 10px 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: rgb(20, 20, 20);
    margin-bottom: 10px;
    width: 100%;
    box-shadow: 0px 0px 40px var(--accent-color-dim);
    border-radius: 5px;
}

.cookie-group-title{
    text-align: start;
    font-size: 1.8rem;
    width: 50%
}

.group-description{
    font-size: 1.2rem;
}


.cookie-group-form{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

input[type="submit"]{
    height: 50px;
    width: 100px;
    margin-right: 10px;
    border-radius: 5px;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    background-color: #ececec;
}

.accept-btn:hover{
    background-color: #2ec396;
    color: #FFF;

}

.decline-btn:hover{
    background-color: #ce5f5f;
    color: #FFF;
}

.cookie-consent-accepted{
    font-size: 20px;
    margin-right: 20px;
    color: #2ec396;
    text-shadow: 0px 0px 20px var(--accent-color-dim);
}

.cookie-consent-declined{
    font-size: 20px;
    margin-left: 20px;
    color: #ce5f5f;
    text-shadow: 0px 0px 20px var(--accent-color-dim);
}

.group-content{
    width: 50%;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-family: Arial, sans-serif;
}

.cookie-table th, .cookie-table td {
  padding: 12px 15px;
  text-align: left;

}

.cookie-table th {
  background-color: #575757;
  color: #e2e2e2;
  font-weight: bold;
}

.cookie-table td {
  color: #dbdbdb;
}

.cookie-table td:first-child {
  font-weight: bold;
}