*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    margin: 0;
}

:root, [data-bs-theme=light] {
    --tblr-primary: #F28C28 !important;
    --tblr-primary-rgb: 242, 140, 40 !important;
    --tblr-secondary: #333333 !important;
    --tblr-secondary-rgb: 51, 51, 51 !important;
    --tblr-body-color: #1a1a1a !important;
    --tblr-body-color-rgb: 26, 26, 26 !important;
    --tblr-link-color: #F28C28 !important;
    --tblr-link-color-rgb: 242, 140, 40 !important;
    --tblr-link-hover-color: #d97900 !important;
    --tblr-link-hover-color-rgb: 217, 121, 0 !important;
    --tblr-border-color: #e0e0e0;
    --tblr-border-color-translucent: rgba(0, 0, 0, 0.05);
    --tblr-highlight-bg: #ffe7c2;
    --tblr-body-bg: #ffffff !important;
    --tblr-body-bg-rgb: 255, 255, 255 !important;
}
/******************************************/
/* Header */

.logo-container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.logo-anchor{
    width: 50%;
}

/******************************************/

/*****************************************/

.text-personalize {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 992px) {
    .logo-anchor {
        width: 10%;
    }

    .fc-header-toolbar{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 648px) {
    .logo-anchor {
        width: 20%;
    }
}