.custom-top-bar {
    background-color: #333;
    color: white;
    padding: 5px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center; /* This ensures the text is centered when flex properties don't apply */
}

.custom-top-bar .ktb-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1; /* This ensures the content takes up the available space */
}

.custom-top-bar a.top-bar-button {
    background-color: #0073aa;
    color: white;
    padding: 1px 20px;
    text-decoration: none;
    border-radius: 3px;
    margin-left: 15px;
}

.ktb-dismiss {
    padding: 0 10px;
    cursor: pointer;
}
