/* styles.css */
.notification-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background-color: #002E63; /* Mørkeblå baggrund */
    color: white; /* Hvid tekst */
    font-weight: bold; /* Fed tekst */
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: bottom 0.3s;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
    text-align: center;
}

.cta-button {
    background-color: #FDB913; /* Kontrastfarve til mørkeblå */
    color: black; /* Sort tekst på knappen */
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 5px;
}

.cta-button:hover {
    background-color: #e3a70e; /* Lidt mørkere ved hover */
}

@media (min-width: 768px) {
    .notification-bar {
        flex-direction: row;
        justify-content: center;
    }

    .notification-bar span {
        margin-right: 20px;
    }
}
