.banner-container {
    display: flex;
    align-items: center;
    padding: 8px 12px 8px 8px;
    background: #fff7fb;
    font-family: sans-serif;
}
.close-button {
    background: none;
    border: none;
    color: #7d747d;
    font-size: 24px;
    text-decoration: none;
    height: 32px;
    width: 32px;
    cursor: pointer;
    padding: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}
.banner-details {
    margin-left: 16px;
}
.banner-details h1 {
    font-size: 14px;
    color: #1e1b1e;
    margin: 0;
}
.banner-details p {
    font-size: 10px;
    color: #48454e;
    margin: 5px 0 0 0;
}
.open-button {
    background-color: #8c33b3;
    color: #ffffff;
    height: 36px;
    margin-left: auto;
    border: none;
    border-radius: 18px;
    padding: 0 16px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
}

@media (prefers-color-scheme: dark) {
    .banner-container {
        background: #151216;
    }
    .close-button {
        color: #978e97;
    }
    .banner-details h1 {
        color: #ffffff;
    }
    .banner-details p {
        color: #cac4cf;
    }
    .open-button {
        background-color: #ebb2ff;
        color: #520071;
    }
}
