/* Header styles */
header.site-header{
    background-color: var(--color-bg-primary-100);
    color: var(--color-primary-text);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0px 0px 50px 50px;    
    text-transform: uppercase;
    font-size: var(--font-size-large);
    padding: 5px 0px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    width: 100%;
}

header.site-header .site-branding{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

header.site-header .site-icon{
    width: 25px;
    height: 25px;
}

header.site-header .site-title{
    font-size: var(--font-size-large);
    text-align: center;
}

header.site-header .site-description{
    font-size: var(--font-size-small);
    text-align: center;
}

/* Footer styles */
footer.site-footer {
    background-color: var(--color-bg-primary-100);
    color: var(--color-primary-text);
    padding: 5px 0px;
    text-align: center;
    flex-shrink: 0; /* Prevents footer from shrinking */
    font-size: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 100;
    border-radius: 50px 50px 0px 0px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

footer.site-footer .site-info-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}