@charset 'UTF-8';
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,300italic,400italic');
@import url('font-awesome.min.css');

/*********************************************************************************/
/* Basic                                                                         */
/*********************************************************************************/
    html,
    body {
    width: 100%;
    /* min-width: 1000px; */
    min-height: 100%;
    margin: 0;
    padding: 0;
    background-color: #F0F0F0;;

    }

    body {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    font-size: 14pt;
    color: #000000;
    }

/*********************************************************************************/
/* LLM Thinking                                                                  */
/*********************************************************************************/

    .typing-indicator .dots {
    display: inline-block;
    white-space: normal;
    }

    .typing-indicator .dot {
    opacity: 0;
    animation: blink 1.5s infinite;
    display: inline-block;
    font-weight: bold;
    text-align: center;
    }

    /* 점들이 가로 순서로 깜빡이도록 딜레이 설정 */
    .typing-indicator .dot1 { animation-delay: 0s; }
    .typing-indicator .dot2 { animation-delay: 0.2s; }
    .typing-indicator .dot3 { animation-delay: 0.4s; }

    @keyframes blink {
    0%   { opacity: 0; }
    30%  { opacity: 1; }
    60%  { opacity: 0; }
    100% { opacity: 0; }
    }

/*********************************************************************************/
/* Footer                                                                        */
/*********************************************************************************/

    .footer {
    color: #d0cece;
    }

    .copyright li {
    display: inline-block;
    }