#cookie-banner{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#222;
    color:#fff;
    padding:15px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:9999;
}
#cookie-banner p
 {
    font-size: 15px;
    width: 1000px;
}
.cct-buttons{
    display:flex;
    gap:10px;
}

#accept-cookie{
    background:#28a745;
    color:#fff;
    border:none;
    padding:8px 15px;
    cursor:pointer;
}

#decline-cookie{
    background:#dc3545;
    color:#fff;
    border:none;
    padding:8px 15px;
    cursor:pointer;
}