
@font-face {
    font-family: 'PP Formula';
    src: url('/fonts/PPFormula-Medium.otf') format('opentype');
    font-weight: 500; /* Medium weight */
    font-style: normal;
}
body {
    background: #F5F5F4;
}
.logo-text {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #264252;
    min-height: 42px;
}
.bold {
    font-weight: 900;
}
.regular {
    font-weight: 400;
}
.by-text {
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #497E9D;
}
.bg-main {
    /*background-color: #F5F5F4;*/
}
.btn-red {
    background: #E62E05;
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #1018280D;
}
.btn-red:hover {
    background: darkred;
}

.font-mulish {
    font-family: 'Mulish', sans-serif;
}

.font-pp-formula {
    font-family: 'PP Formula', sans-serif;
}
.text-formula-500 {
    font-family: 'PP Formula', sans-serif;
    font-size: 36px;
    font-weight: 500;
}
.text-formula-900 {
    font-family: 'PP Formula', sans-serif;
    font-weight: 900;
}
.text-mulish-400 {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
}
.text-mulish-500 {
    font-family: 'Mulish', sans-serif;
    font-weight: 500;
}
.text-mulish-600 {
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 600;
}
.text-color-1 {
    color: #121F26;
}
.text-color-2 {
    color: #BC1B06;
}
.text-color-3 {
    color: #375F77;
}
.text-color-3700 {
    color: #264252;
}
.text-color-footer {
    color: #CECFD2;
}
.border-color-x {
    border-color: #8CB3CA;
}
.border-color-red-1 {
    border-color: #BC1B06;
}
.bg-pink {
    background: #8CB3CA;
    height: 1px;
}
.border-color-2 {
    border-color: #B2CCDB;
}
.border-color-3 {
    border: #8CB3CA;
}
.bg-color-prim {
    background-color: #F5F5F4;
}
.bg-secondary-solid {
    background-color: #375f77;
}
.bg-icon-Strategie {
    background-color: #4e5aa6
}
.bg-icon-Waarde {
    background-color: #E62E05
}
.bg-icon-Fundament {
    background-color: #65c51c
}
.bg-icon-Kennis {
    background-color: #d444f0
}
.bg-icon-Team {
    background-color: #0ba4eb
}
.bg-color-1 {
    background-color: #264252;
}
.bg-color-2 {
    background-color: #EEF3F7;
}
.bg-red-1 {
    background: #E62E05;
}
.bg-red-2 {
    background: #ff4305;
}

/* Dancing Dots */
.dot-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 40px; /* Adjust width as needed for spacing */
    height: 25px;
}

.dot {
    width: 4px;
    height: 4px;
    background-color: #375F77; /* Custom color */
    border-radius: 50%;
    animation: bounce-sequence 3s infinite ease-in-out;
}

.dot1 {
    animation-delay: 0s;
}

.dot2 {
    animation-delay: 1s;
}

.dot3 {
    animation-delay: 2s;
}

@keyframes bounce-sequence {
    0%, 20%, 100% {
        transform: translateY(0);  /* Dot stays still */
        background-color: #375F77; /* Default color */
    }
    10% {
        transform: translateY(-6px);  /* Dot moves up */
        background-color: #669AB8; /* Lighter color */
    }
}

.text-color-result {
    color: #131E26;
}

.chat-container {
    display: flex;
    flex-direction: column;  /* Arrange children vertically */
    height: 85vh;
}

.messages {
    flex-grow: 1;  /* This makes the messages container take up remaining space */
    overflow-y: auto;  /* Enables vertical scrolling when content exceeds height */
}

@media print {
    .pagebreak {
        clear: both;
        page-break-after: always;
    }
    .chat-message, .value-block {
        break-inside: avoid;
        display: block;
    }
}
