#cookieBar{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#020617;
    border-top:1px solid #1e293b;
    z-index:9999;
    padding:20px;
    font-size:14px;
}

.cookie-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    gap:30px;
}

.cookie-text{
    flex:1;
    text-align:justify;
    color:#cbd5f5;
}

.cookie-buttons{
    width:180px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

#cookieAccept{
    background:#10b981;
    color:white;
    padding:10px;
    border:none;
    cursor:pointer;
    font-weight:bold;
}

#cookieReject{
    background:#475569;
    color:white;
    padding:10px;
    border:none;
    cursor:pointer;
    font-weight:bold;
}