  .ai-container {
            max-width: 800px;
            margin: 0 auto;
            font-family: 'Raleway', sans-serif;
            background-color: rgb(231, 231, 231);
            padding: 80px 20px;
            text-align: center;
            color: #4A4A4A;
        }

        .ai-container-fluid {
            background-color: rgb(231, 231, 231);
        }


        .ai-container .logo {
            height: 45px;
        }

        .ai-container .subtitle {
            color: #4A4A4A;
            font-size: 18px;
            font-weight: normal;
            margin-top: 10px;
            font-family: 'Raleway', sans-serif;
        }

        .ai-container .title {
            color: #222222;
            font-size: 32px;
            font-weight: 700;
            font-family: 'Manrope', sans-serif;
        }

        .ai-container .description {
            color: #4A4A4A;
            font-weight: 400;
            font-family: 'Raleway', sans-serif;
        }

        .ai-container .input-container {
            margin: 20px 0;
            display: flex;
            align-items: center;
            background: white;
            border-radius: 8px;
            padding: 5px;
            border: 1px solid #999999;
            box-shadow: -5px 5px 0px rgba(0, 0, 0, 0.4);
            transition: box-shadow 0.3s ease;
            font-family: 'Raleway', sans-serif;
        }

        .ai-container .input-field {
            font-family: 'Montserrat', sans-serif;
            flex: 1;
            padding: 10px;
            border: none;
            outline: none;
            background: transparent;
            font-size: 14px;
            font-family: 'Raleway', sans-serif;
        }

        .ai-container .send-button {
            font-family: 'Montserrat', sans-serif;
            background: #ec2a44;
            color: #FFFFFF;
            display: flex;
            align-items: center;
            padding: 10px 27px;
            border-radius: 25px;
            font-size: 16px;
            border: none;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
            margin-right: 10px;
        }

        .ai-container .send-button:hover {
            background: #EA314D;
            transform: scale(1.05);
        }

        .ai-container .send-button:active {
            transform: scale(0.95);
        }

        .ai-container .send-icon {
            height: 20px;
            margin-right: 5px;
        }
  
        .ai-container .error-message {
            color: red;
            font-size: 14px;
            display: none;
            text-align: left;
            margin: 5px 0px 15px 0px;
            background: rgba(255, 255, 255, 0.6);
            padding: 20px;
            border-radius: 8px;
            font-family: 'Raleway', sans-serif;
        }

        .ai-container .checkbox-container {
            text-align: left;
            font-size: 14px;
            font-weight: 300;
            font-family: 'Raleway', sans-serif;
        }

        .ai-container .checkbox-container label {
            display: block;
            margin: 5px 0;
            font-family: 'Raleway', sans-serif;
        }

        .ai-container .checkbox-container a {
            color: #EA314D;
            font-weight: bold;
            text-decoration: none;
            font-family: 'Raleway', sans-serif;
        }

        .ai-container .suggestion-title {
            color: #666;
            font-size: 16px;
            margin-top: 40px;
            font-weight: 600;
            font-family: 'Raleway', sans-serif;
        }

        .ai-container .suggestions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            font-family: 'Raleway', sans-serif;
        }

        .ai-container .sugerencia {
            background: white;
            padding: 8px 12px;
            border-radius: 16px;
            font-size: 12px;
            border: 1px solid #999999;
            font-weight: 400;
            cursor: pointer;
            font-family: 'Raleway', sans-serif;
        }

        /* Sombra activa cuando los checkboxes están marcados */
        .input-container.active {
            box-shadow: -5px 5px 0px #EA314D;
            font-family: 'Raleway', sans-serif;
        }