/*
 Theme Name:     Twenty Twenty-Five Child
 Template:       twentytwentyfive
 Version:        1.0
*/

@import url("../twentytwentyfive/style.css");

/* Styling for the tabs container */
.tabs {
    display: flex; /* Align tabs horizontally */
    justify-content: space-around; /* Evenly space tabs */
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

.tab {
    padding: 10px 20px;
    background-color: #f0f0f0;
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    z-index: 5; /* Ensure tabs stay above any other elements */
}

/* Highlight tabs on hover */
.tab:hover {
    background-color: #ccc;
}

/* Styling for the PDF containers */
.pdf-container {
    display: none; /* Hide all PDFs initially */
    margin-top: 20px;
}

/* Active tab styling */
.tab.active {
    background-color: #0073e6;
    color: white;
}

/* toegevoegd montsarrat font zie ook functions.php in child theme*/ 
html, body, h1, h2, h3, h4, h5, h6, p, a, li, blockquote, input, textarea, button {
    font-family: 'Montserrat', sans-serif !important;
}


