@charset "UTF-8";
/* CSS Document */


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            
            
            background: linear-gradient(180deg, rgba(22, 75, 148, 1), rgba(3, 175, 154, 1));
        }

        .chat-messages {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
        }

        .message {
            margin-bottom: 15px;
            max-width: 80%;
            padding: 10px 15px;
            border-radius: 15px;
            line-height: 1.4;
        }

        .user-message {
            background: #dcf8c6;
            margin-left: auto;
            border-radius: 15px 15px 0 15px;
        }

        .ai-message {
            background: #e8e8e8;
            margin-right: auto;
            border-radius: 15px 15px 15px 0;
        }

        .chat-input-container {
            padding: 20px;
            border-top: 1px solid #e0e0e0;
            display: flex;
            gap: 10px;
        }

        .chat-input {
            flex: 1;
            padding: 12px;
            border: 1px solid #e0e0e0;
            border-radius: 24px;
            outline: none;
            font-size: 16px;
        }

        .send-button {
            padding: 12px 24px;
            background: #075e54;
            color: white;
            border: none;
            border-radius: 24px;
            cursor: pointer;
            font-size: 16px;
        }

        .send-button:hover {
            background: #054c44;
        }

        .send-button:disabled {
            background: #cccccc;
            cursor: not-allowed;
        }

        .loading {
            display: none;
            margin: 10px auto;
            text-align: center;
            color: #666;
        }