/*
Theme Name: volkooren
Description: Child theme van Twenty Twenty-Five
Author: Voskes Webdesign
Template: twentytwentyfive
Version: 1.0
*/

/* Hier kun je je eigen CSS toevoegen */

/* Datum laatste wijziging aanpassen */

span.list_last_changes_date {
    font-size: 14px;
    color: #182AE6;
    font-weight: normal;
}

/* naar boven knop op iedere pagina */
/* Knop zichtbaar boven alles */
.back-to-top {
    display: block !important;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 999999 !important;
    color: #182ae6;      /* SVG kleur */
    background: transparent;
    border: none;
    padding: 5px;
}

/* SVG grootte */
.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* Mobiel optimalisatie */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 12px;
        right: 12px;
    }
    .back-to-top svg {
        width: 22px;
        height: 22px;
    }
}

/* Hover effect */
.back-to-top:hover svg {
    opacity: 0.7;
}

/* Smooth scroll effect */
html {
    scroll-behavior: smooth;
}